声明HTML5文件
DOCTYPE html>
缩略词,title属性显示完整内容
双向文本方向 配合全局属性dir实现文字正逆序
<meter value="2" min="0" max="10">` `<meter value="0.6">`
<progress value="22" max="100">
<ruby>
汉 <rp>(rp><rt>hanrt><rp>)rp>
ruby>
汉 (han)
<select>
<optgroup label="Swedish Cars">
<option value="volvo">Volvooption>
<option value="saab">Saaboption>
optgroup>
<optgroup label="German Cars">
<option value="mercedes">Mercedesoption>
<option value="audi">Audioption>
optgroup>
select>
<form>
<fieldset>
<legend>Personalia:legend>
fieldset>
form>
<input list="browsers" name="browser">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
datalist>
<input type="range" id="a" value="50">100
+<input type="number" id="b" value="50">
=<output name="x" for="a b">output>
定义内联框架。 实现页面的嵌入
<iframe src="//www.baidu.com">
<p>您的浏览器不支持 iframe 标签。p>
iframe>
中的 usemap 属性可引用
中的 id 或 name 属性(取决于浏览器),所以我们应同时向
添加 id 和 name 属性。
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap" id='plantmap'>
<area shape="rect" coords="0,0,82,126" alt="Sun" href="sun.htm">
<area shape="circle" coords="90,58,3" alt="Mercury" href="mercur.htm">
<area shape="circle" coords="124,58,8" alt="Venus" href="venus.htm">
map>
创建画布,使用脚本绘制图形
标签规定独立的流内容 如果被删除,则不应对文档流产生影响。
元素应该被置于 元素的第一个或最后一个子元素的位置。
定义声音资源 目前支持MP3、Wav、Ogg
<audio controls>
<source src="horse.ogg" >
<source src="horse.mp3" >
您的浏览器不支持 audio 元素。
audio>
为媒体( 和 )元素定义外部文本轨道。
定义一个音频或者视频
定义块引用
定义短的引用
定义作品(比如书籍、歌曲、电影、电视节目、绘画、雕塑等等)的标题
定义一个日期/时间
指定文档的主体内容
定义一个独立文章内容
定义了文档的某个区域 包含了一组内容及其标题
定义主区域内容之外的内容,如侧边栏
定义一个文档头部部分 页眉
定义导航栏
定义一个文档底部 页脚
标签也可以嵌套
定义图片标题
<figure>
<img loading="lazy" src="img_pulpit.jpg" alt="The Pulpit Rock" width="304" height="228">
<figcaption>Fig1. - The Pulpit Pock, Norway.figcaption>
figure>
定义计算机代码文本
定义计算机代码样本
定义定义项目。
定义键盘文本。
定义带有记号的文本
定义文本的变量部分
规定在文本中的何处适合添加换行符。
为了结构更加清晰,便于搜索引擎分析,支持版权和互联共享服务
<table border="1">
<caption>Monthly savingscaption>
<tr>
<th>Monthth>
<th>Savingsth>
tr>
<tr>
<td>Januarytd>
<td>$100td>
tr>
table>
定义页面中所有链接的默认地址或默认目标。
定义针对不支持客户端脚本的用户的替代内容。
定义了一个容器,用来嵌入外部应用或者互动程序(插件)。
感觉有点多余
标签定义一个对话框、确认框或窗口。
规定了用户可见的或者隐藏的需求的补充细节
<details>
<summary>Copyright 1999-2011.summary>
<p> - by Refsnes Data. All Rights Reserved.p>
<p>All content and graphics on this web site are the property of the company Refsnes Data.p>
details>