runoops.com

HTML 参考手册 第42页

HTML link media 属性

阅读(1147)

针对两种不同的媒介类型(计算机屏幕和打印)的两种不同的样式表: 实例 Run this code » <head> <link rel="stylesheet" type="text/css" href="theme.cs...

HTML link hreflang 属性

阅读(1140)

在这里,hreflang 属性只是被链接文档是用英文编写的: 实例 Run this code » <link href="tag-link.html" rel="parent" rev="subsection" hreflang="...

HTML link href 属性

阅读(1093)

链接到外部样式表: 实例 Run this code » <link rel="stylesheet" type="text/css" href="theme.css"> 浏览器支持 所有主流浏览器都支持 href 属性。 定义...

HTML link charset 属性

阅读(1179)

charset 属性指示被链接文档是用日文编写的: 实例 <link href="domoarigato.htm" rel="parent" charset="ISO-2022-JP"> 浏览器支持 注意:所有的主流浏览器都不支...

HTML noscript 标签

阅读(1545)

<noscript> 标签的使用: 实例 Run this code » <script> document.write("Hello World!") </script> <noscript>...

HTML noframes 标签

阅读(1784)

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

HTML nav 标签

阅读(1674)

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

HTML meter 标签

阅读(1575)

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

HTML meta 标签

阅读(1716)

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

HTML menu 标签

阅读(1571)

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