1-1、article元素

示例一: 

  <article>
    <header>
      <h1>苹果</h1>
      <p>发表日期:<time pubdate>2017/07/02</time></p>
    </header>
    <p><b>苹果</b>,植物类水果</p>
    <footer>
      <p><small>公司所有</small></p>
    </footer>
  </article>

示例二:

 

<article>
    <header>
        <h1>苹果</h1>
        <p>发表日期:<time pubdate>2017/07/02</time></p>
    </header>
    <p><b>苹果</b>,植物类水果</p>
    <section>
        <h2>评论</h2>
        <article>
            <header>
                <h3>发表者:小明</h3>
                <p>
                    <time pubdate="" datetime="2017/07/02T21:04">1小时前</time>
                </p>
            </header>
            <p>我喜欢苹果。</p>
        </article>
        <article>
            <header>
                <h3>发表者:小红</h3>
                <p>
                    <time pubdate="" datetime="2017/07/02T21:15">1小时前</time>
                </p>
            </header>
            <p>我喜欢橘子不喜欢苹果。</p>
        </article>
    </section>
</article>

示例三:

<article>
    <h1>我的水果机</h1>
    <object data="" type="">
        <param name="allowFullScreen" value="true">
        <embed src="#" width="600" height="395" type="">
    </object>
</article>
原文地址:https://www.cnblogs.com/webBlog-gqs/p/7107233.html