美文网首页
HTML语义:用语义化标签来呈现一个标准的网页

HTML语义:用语义化标签来呈现一个标准的网页

作者: ChrisFang | 来源:发表于2019-04-17 16:45 被阅读0次

    一个普通的网页大致需要以下元素。(请点击放大)


    image.png

    这里一个典型的 body :

    <body>
        <header>
            <nav>
                ……
            </nav>
        </header>
        <aside>
            <nav>
                ……
            </nav>
        </aside>
        <section>……</section>
        <section>……</section>
        <section>……</section>
        <footer>
            <address>……</address>
        </footer>
    </body>
    

    一些文章等典型body:

    <body>
        <header>……</header>
        <article>
            <header>……</header>
            <section>……</section>
            <section>……</section>
            <section>……</section>
            <footer>……</footer>
        </article>
        <article>
            ……
        </article>
        <article>
            ……
        </article>
        <footer>
            <address></address>
        </footer>
    </body>
    
    

    相关文章

      网友评论

          本文标题:HTML语义:用语义化标签来呈现一个标准的网页

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