html5-标签

 1 <html xmlns="http://www.w3.org/1999/xhtml">
 2 <head>
 3     <title>html5标签</title>
 4     <style type="text/css">
 5         p
 6         {
 7             font-size:20;
 8             color:Orange;
 9         }
10     </style>
11     
12 </head>
13 <body>
14     <p>&lt;abbr&gt;标签:表示它所包含的文本是一个更长的单词或短语的缩写形式。</p>
15     The <abbr title="People's Republic of China">PRC</abbr> 创建于1948年。 
16     <p>&lt;acronym&gt; 标签定义首字母缩写词</p>
17     <acronym title="World Wide Web">WWW</acronym>
18 
19     <p>&lt;address&gt; 标签定义文档作者或拥有者的联系信息。如果&lt;address&gt; 元素位于&lt;article&gt; 元素内部,则它表示该文章作者或拥有者的联系信息。</p>
20     
21     <br />
22     <article>
23         <a href="html5影像.htm" >勇敢爱-最炫民族风</a>
24         2013-8-14 10:53:41
25         long long ago......
26         
27     </article>
28     <p>&lt;area&gt; 标签定义图像映射中的区域。</p>
29     <img src ="../images/flower.png" alt="Planets" usemap ="#planetmap" /> 
30     <map id ="planetmap"> 
31         <area shape ="rect" coords ="0,0,82,126" href ="html5Cnavas.htm" alt="Sun" /> 
32         <area shape ="circle" coords ="88,58,8"href ="html5影像.htm" alt="Mercury" /> 
33         <area shape ="circle" coords ="124,58,8"href ="Html5Web存储.htm" alt="Venus" /> 
34     </map> 
35 
36     <footer>轻轻地我来了
37         <address>
38             <b>姓名:wangxuemin</b>
39             现住地址:209对面&nbsp;
40             家庭地址:河北秦皇岛
41         </address>
42     </footer>
43 
44     <hgroup> 
45         <h1>Welcome to my WWF</h1> 
46         <h2>For a living planet</h2> 
47     </hgroup> 
48 </body>
49 </html>
原文地址:https://www.cnblogs.com/huangzhen22/p/3256735.html