<!doctype html>
<head>
<title>
HTML5 Article Element
</title>
</head>
<body>
<article>
<h1>HTML5 article element</h1>
<p>HTML <code><article></code> tag is a <strong>semantic element</strong> that provides<strong> meaning to the content on a webpage</strong>.</p>
<p>It usually contains<strong> information/content</strong> that is<strong> generally the main content</strong> or a<strong> snippet of the main content </strong>on a webpage.</p>
<p>We can always use a <code><div></code> tag to define sections/divisions on a webpage but using the <code><article></code> tag is beneficial because when a browser or a web crawler accesses a webpage and see a section of content inside the <code><article></code> tag it will immediately know that this particular section holds the main content.</p>
<p>Also, this is a <strong>block-level element</strong>.</p>
</article>
</body>
</html>