html5-section元素

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>section元素,带有语义的块元素</title>
</head>
<body>
    <section>
        <h2>第一章</h2>
        <p>第一章节的内容</p>
    </section>
    <article>
        <header>
            <h3>文章的标题</h3>
            <h5>作者:京津冀</h5>
        </header>
        <p>正文88888888888888888888888888888888888888888 <br>888888888888888888888888888 <br>*****************************<br>*************************</p>
        <section>
                <article>
                    <header><h4>网友的评论</h4></header>
                        <p>评论的内容</p>
                    <footer>发布时间:2017年9月13日</footer>
                </article>
        </section>
        <footer>
            <p>尾部,阅读300,评论80</p>
        </footer>
    </article>
</body>
</html>

posted @ 2017-09-13 07:26  侯伟东  阅读(213)  评论(0编辑  收藏  举报