HTML5 article element <article> จะใช้ระบุส่วนที่เป็นเนื้อหาของเว็บไซต์ ซึ่งจะทำให้รู้ว่าส่วนนี้คือเนื้อหาของเว็บไซต์ ซึ่งควรแยกออกจากส่วนอื่นๆ ตัวอย่างเช่น ข่าว บทความ บล็อก หรือคอมเมนต์ต่างๆ เป็นต้น

<!DOCTYPE HTML>
<html>
<body>

<article>
<a href="html5inth.com">HTML5</a>
<br />
HTML5 คือภาษารุ่นต่อไปของ HTML ที่ใช้สำหรับการจัดโครงสร้างและการนำเสนอเนื้อหาของเว็บไซต์
ซึ่งจะเป็นมาตรฐานใหม่สำหรับ HTML, XHTML, และ HTML DOM....
</article>

</body>
</html>
<header id="page-header">
    <h1>Site title</h1>
    <form>Search</form>
    <nav class="site-nav">
        <ul>Site navigation</ul>
    </nav>
</header>
<section id="main-content">
    <article>
        <h1>Article title</h1>
        <p>Summary</p>
    </article>
    <article>
        <h1>Article title</h1>
        <p>Summary</p>
    </article>
    <article>
        <h1>Article title</h1>
        <p>Summary</p>
    </article>
</section>
<aside class="sidebar">
    <section>
        <h2>Blogroll…</h2>
    </section>
    <section>
        <h2>Photos…</h2>
    </section>
</aside>
<footer id="page-footer">
    <h2>Footer</h2>
</footer>

<article> element นี้สนับสนุน HTML5 Attributes

ดูข้อมูลเพิ่มเติม http://oli.jp/2009/html5-structure1/