HTML5新增的非主体结构元素:

1、header元素:

    header元素常放置在整个页面或页面内的一个内容区块的标题部分。是一种具有引导和导航作用的结构元素。

 2、footer元素

文档中的页脚部分。

3、hgroup元素:

hgroup元素用于对网页或区段(section)的标题进行组合。

<hgroup>
  <h1>Welcome to my Blog</h1>
  <h2>For a living planet</h2>
</hgroup>

<p>The rest of the content...</p>
运行:

4、address元素:

通常放置联系信息之类。

<address>
Written by <a href="[email protected]">adamm</a>.<br> 
address:<br>
Example.com<br>
china<br>
</address>






你可能感兴趣的:(HTML5新增的非主体结构元素:)