当前位置: 首页 > 工具软件 > Html2Article > 使用案例 >

html5中article元素的使用方法

徐新荣
2023-12-01
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>article元素的使用方法</title>
    </head>
    <body>
        <article>
            <header>
                <h1>我是article</h1>
                <p>创建时间<time pubdate="true">2016/7/25</time></p>
            </header>
        </article>
        <p>
            <b>Article</b>是一个独立的区域
        </p>
        <section>
            <h2>读者评论</h2>
            <article>
                <header>
                    <h3>读者:flower</h3>
                    <p>
                        <time pubdate="true" datetime="2016/7/25 T23:00">2小时前</time>
                    </p>
                </header>
                <p>文章很好</p>
            </article>
            <article>
                <header>
                    <h3>读者:cherish</h3>
                    <p>
                        <time pubdate="true" datetime="2016/7/25 T21:00">1小时前</time>
                    </p>
                </header>
                <p>文章很好</p>
            </article>
        </section>
        <footer>
            <p><small>开发者版权</small></p>
        </footer>
        </article>
    </body>
</html>

 类似资料: