runoops.com

参考手册 第64页

HTML noframes 标签

阅读(1936)

显示三个frame框架,如果不支持frame输出 <noframes> 标签的文本: 实例 Run this code » <html> <frameset cols="25%,50%,25%"> &nb...

HTML nav 标签

阅读(1811)

一个导航链接实例: 实例 Run this code » <nav> <a href="/html/">HTML</a> | <a href="/css/">CSS</a> | &...

HTML meter 标签

阅读(1705)

使用 meter 元素展示给定的数据范围: 实例 Run this code » <meter value="2" min="0" max="10">2 out of 10</meter><br> <...

HTML meta 标签

阅读(1871)

描述 HTML 文档的元数据: 实例 Run this code » <head> <meta name="description" content="免费在线教程"> <meta name="keywords...

HTML menu 标签

阅读(1712)

两个菜单按钮系列选项实例("File" 和 "Edit"): 实例 Run this code » <menu type="toolbar"> <li> <menu label="File"> <b...

HTML5 mark 标签

阅读(1687)

部分文本高亮显示: 实例 Run this code » <p>Do not forget to buy <mark>milk</mark> today.</p> 浏览器支持 Internet...

HTML map 标签

阅读(1819)

带有可点击区域的图像映射: 实例 Run this code » <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">...

HTML main 标签

阅读(1756)

使用 main 标签来展示文档的主体部分: 实例 Run this code » <main> <h1>Web 浏览器</h1> <p>Google Chrome、Firefox 以及 Int...

HTML link 标签

阅读(1680)

链接到外部样式文件: 实例 Run this code » <head> <link rel="stylesheet" type="text/css" href="theme.css"> </head> ...

HTML li value 属性

阅读(1437)

在有序列表中使用 value 属性: 实例 Run this code » <ol>   <li value="100">Coffee</li>   <li>Tea</li>   ...