2.10.1 article元素

 嵌套

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <title></title>
</head>
<body>
    <article>
        <header>
            <h1>极客学院</h1>
        </header>
        <article>
            <header>
                作者
            </header>
            <p>评论</p>
            <footer>
                time
            </footer>
        </article>
        <footer>
            这是底部
        </footer>
    </article>

    <article>
        <h1>这是一个页面</h1>
        <object>
            <embed src="#" width="600px" height="400px"></embed>
        </object>

    </article>
</body>
</html>
原文地址:https://www.cnblogs.com/kikyoqiang/p/11055521.html