使用者看到的內容並不是對應本網站的一個具體的頁面,
範例程式碼:
<html> <body> <article> <h5>HTML5 项目</h5> <p>HTML5是用于修正现在html的下一个网页规范</p> <p>HTML5是万维网结构方面的标准</p> </article> </body> </html>
article元素代表網站製作中的文件、頁面或應用程式中獨立的、完整的、可以獨自被外部引用的內容。它可以是一篇部落格或報紙中的文章、一片論壇貼文、一段使用者評論,或其它任何獨立的內容。除了內容部分,一個article元素通常用作它自己的標題,有時還有它自己腳註。
下面是一段關於article元素的實例:
<article> <header> <h1>标题</h1> <p>发表日期:<time pubdate="pubdate">2011年7月10号</time></p> </header> <footer> <p>w3cmm 版权所有</p> </footer> </article>
article元素是可以嵌套的,內層的內容原則上需要與外層的內容相關聯。例如,在一篇部落格文章中,針對該文章的評論就可以使用嵌套article元素的方式,用來呈現評論的article元素被包含在表示整體內容的article元素裡面。
下面是一個關於article元素的程式碼實例:
<article> <header> <h1>标题</h1> <p>发表日期:<time pubdate="pubdate">2011年7月10号</time></p> </header> <section> <h2>评论</h2> <article> <header> <h3>张三的评论</h3> <p>12分钟前</p> </header> <p>……</p> </article> <article> <header> <h3>李四的评论</h3> <p>15分钟前</p> </header> <p>……</p> </article> </section> </article> </article>
下面來看看article標籤巢狀的程式碼:
<article> <header> <h1>article标签使用方法</h1> <p>发表日期:<time pubdate="pubdate">2015/8/1</time></p> </header> <p>怎样使用article标签?</p> <section> <h2>评论</h2> <article> <header> <h3>www.00h5.com零零H5</h3> <p><time pubdate datetime="2015-8-1T:21-26:00">1小时前</time></p> </header> <p>不错!</p> </article> <article> <header> <h3>零零H5www.00h5.com</h3> <p><time pubdate datetime="2011-12-23T:21-15:00">小时</time></p> </header> <p>对article解释</p> </article> </section> </article>
以上是html中關於