HTML meta name 属性
使用 name 属性来定义一个 HTML 文档的描述、关键词、作者: 实例 Run this code » <head> <meta name="description" content="Free Web tutoria...
使用 name 属性来定义一个 HTML 文档的描述、关键词、作者: 实例 Run this code » <head> <meta name="description" content="Free Web tutoria...
描述 HTML 文档内的元数据: 实例 Run this code » <head> <meta name="description" content="Free Web tutorials"> <meta n...
规定 HTML 文档的字符编码: 实例 Run this code » <head> <meta charset="UTF-8"> </head> 浏览器支持 所有主流浏览器都支持 charset 属性。...
带有两个菜单按钮("File" 和 "Edit")的工具栏,每个按钮都是一个带有一系列选项的下拉菜单: 实例 Run this code » <menu type="toolbar"> <li> <menu l...
带有两个菜单按钮("File" 和 "Edit")的工具栏,每个按钮都是一个带有一系列选项的下拉菜单: 实例 Run this code » <menu type="toolbar"> <li> <menu l...
带有可点击区域的图像映射: 实例 Run this code » <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">...
在下面的实例中,type 属性指示了被链接的文档是一个外部的样式表: 实例 Run this code » <head> <link rel="stylesheet" type="text/css" href="theme...
在下面的实例中,会在新窗口中加载被链接文档: 实例 <head> <link rel="parent" href="wildcats.htm" target="_blank"> </head> 浏览器支持...
带有指定尺寸的图标: 实例 Run this code » <link rel="icon" href="demo_icon.gif" type="image/gif" sizes="16x16"> 浏览器支持 目前几乎没有主流...
在下面的实例中,rev 属性指示当前文档是 "wildcats.htm" 的父页面: 实例 <head> <link rev="parent" href="wildcats.htm"> </head> 浏...