References

Collection of references for web development.

HTML article tag

Description

The HTML <article> element identifies the content which could be used as a stand-alone unit, which could be distributable or reusable. This could be a blog post, newspaper article, forum post, or any other independent content.

Example

<article>
	<h1>Article Heading</h1>
	<p>This would be the content for the article...</p>
</article>

Example #2

<article>
	<header>
		<h1>Article Heading</h1>
		<p>Published by Dave on <time pubdate="pubdate">21/11/2017</time></p>
	</header>
	<p>This would be the main content for the article.</p>
	<footer>
		<p>This would be the footer content for the article.</p>
	</footer>
</article>