The article element (<article>) defines a self-contained composition within a page.
Overview Table“Article” is an element, first introduced in HTML5, for the purpose of relieving “div” fatigue and overuse. An article element might represent content like a:
or any other independent item of content.
When article elements are nested, the inner article should be related to the contents of the outer article. For example, a blog entry on a site that accepts user-submitted comments might represent the comments as article elements nested within the article element for the blog entry.
ExamplesThe following example shows the basic structure of an article using article, header, and footer elements.
<article>
<header>
<h1>Article Heading</h1>
</header>
<p>Article Text</p>
<p>...</p>
<footer>Article Footer</footer>
</article>
Related specifications
nav - The HTML navigation element is often used as a child element of the article tag.
External resources AttributionsMicrosoft Developer Network: [Windows Internet Explorer API reference Article]
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4