html5

作者: 范小哥____ | 来源:发表于2018-05-06 14:35 被阅读0次

    一.html4和html5对比

    h5新的写法.png 传统的写法.png

    二.html5的标签

    • header------页面的头部
      <header></header>
    • main------页面的主体内容(每个页面只能有一个)
      <main></main>
    • section------划分区域(相当于html4中的div)
      <section></section>
    • article------划分文章每章节(article里面可以放多个aside)
      <article></article>
    • nav----导航区域
      <nav> ul>li </nav>
    • footer------底部导航
      <footer></footer>
    • figure------新闻形式的组合(文字主标题 副标题和图片组合)
      <figure> <h1></h1> <h5></h5> </figure>
    • hgroup------标题和子标题的组合
      <hgroup> <h1></h1> <h5></h5> </hgroup>

    相关文章

      网友评论

          本文标题:html5

          本文链接:https://www.haomeiwen.com/subject/ohlurftx.html