美文网首页
html5第一次课

html5第一次课

作者: 璐璐熙可 | 来源:发表于2018-05-05 16:16 被阅读140次

    html4与html5对比

    h4写法

    传统的写法.png

    h5写法

    h5新的写法.png

    标签:

    • header-----页面的头部
      <header></header>
    • main----页面主体内容部分(每个页面只可以出现一次)
      <main></main>
    • section------划分区域
      <section></section>(section里面可以放多个article)
    • article------划分文章每章节(article里面可以放多个aside)
      <article></article>
      总结:
        <article>
            <h3>三级标题</h3>
            <p>我是李白,一人饮酒醉</p>
            <aside>向右看一眼</aside>
        </article>
    
    • nav----导航区域
      <nav> ul>li </nav>

    • footer----底部导航区域
      <footer></footer>

    • figure----里面可以放入图片和文字
      <figure> p img h3</figure>

    • hgroup----标题与子标题的组合
      <hgroup></hgroup>

    相关文章

      网友评论

          本文标题:html5第一次课

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