@web

HTML5_新标签

2016-11-27  本文已影响26人  07120665a058

(一)HTML5 添加的一些新标签:

(二)新的布局页面展示:

<!DOCTYPE html>
<html>
  <head>
    <title>my page</title>
  </head>
  <body>
    <header>header</header>
    <nav>nav</nav>
    <article>
       <section>section</section>
    </article>
    <aside>aside</aside>
    <footer>footer</footer>
  </body>
</html>

(三)HTML5标签详解

<section>
       <h1>潜行者m的个人介绍</h1> 
       <p>潜行者m是一个男的中国人。。。。。。</p>
</section>
<article> 
    <header>
       <h1>潜行者m的个人介绍</h1>
    </header> 
    <p>潜行者m是一个男的中国人。。。。。</p>
    <footer> 
       <p>潜行者m版权所有</p>
    </footer>
</article>
<nav> 
      <ul>
       <li>...</li>
       <li>...</li>
       <li>...</li>
      </ul>
</nav>
<aside> 
      <h1>作者简介</h1> 
</aside>
<header>
       <hgroup>
         <h1>网站标题</h1>
       </hgroup>
</header>
<footer> 页脚信息</footer>
<hgroup>
       <h1>这是一篇介绍HTML 5结构标签的文章</h1>
       <h2>HTML 5的革新</h2>
       <h6>...</h6>
</hgroup>
<figure>
      [站外图片上传中……(2)] 
      <figcaption>这儿是图片的描述信息</figcaption>
</figure>

(四)、article与section的详解

article 元素更强调独立性、完整性,section 更强调相关性。

<article> 
      <header> 
         <h1>潜行者m的个人介绍</h1>
      </header>
      <p>潜行者m是一个中国男人,是一个帅哥。。。。</p>
      <section>
        <h2>评论</h2> 
        <article> 
          <h3>评论者:潜行者n</h3> 
          <p>确实,m同学真的很帅</p> 
        </article> 
        <article> 
          <h3>评论者:潜行者a</h3> 
          <p>M今天吃药了没?</p>
         </article>
      </section>
</article>

参考文章推荐:

article 元素与 section 元素区别详解

上一篇下一篇

猜你喜欢

热点阅读