HTML noframes 标签
显示三个frame框架,如果不支持frame输出 <noframes> 标签的文本: 实例 Run this code » <html> <frameset cols="25%,50%,25%"> &nb...
显示三个frame框架,如果不支持frame输出 <noframes> 标签的文本: 实例 Run this code » <html> <frameset cols="25%,50%,25%"> &nb...
一个导航链接实例: 实例 Run this code » <nav> <a href="/html/">HTML</a> | <a href="/css/">CSS</a> | &...
使用 meter 元素展示给定的数据范围: 实例 Run this code » <meter value="2" min="0" max="10">2 out of 10</meter><br> <...
描述 HTML 文档的元数据: 实例 Run this code » <head> <meta name="description" content="免费在线教程"> <meta name="keywords...
两个菜单按钮系列选项实例("File" 和 "Edit"): 实例 Run this code » <menu type="toolbar"> <li> <menu label="File"> <b...
部分文本高亮显示: 实例 Run this code » <p>Do not forget to buy <mark>milk</mark> today.</p> 浏览器支持 Internet...
带有可点击区域的图像映射: 实例 Run this code » <img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">...
使用 main 标签来展示文档的主体部分: 实例 Run this code » <main> <h1>Web 浏览器</h1> <p>Google Chrome、Firefox 以及 Int...
链接到外部样式文件: 实例 Run this code » <head> <link rel="stylesheet" type="text/css" href="theme.css"> </head> ...
在有序列表中使用 value 属性: 实例 Run this code » <ol> <li value="100">Coffee</li> <li>Tea</li> ...