An <article> tag is self-contained content. This is used in a blog post, forum post, newspaper article etc.
Example of Code
<!DOCTYPE html>
<html>
<head>
<title>HTML Article Tag</title>
</head>
<body>
<article>
<p>HTML</p>
<p>HTML is Hypertext Markup Language</p>
</article>
</body>
</html>
Output
HTML
HTML is Hypertext Markup Language
