1. 程式人生 > >1-1、article元素

1-1、article元素

color type small -1 code idt object ade time

示例一: 

  <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>

1-1、article元素