Represents a part of a page composed of self-contained components in a document, page, application, or site, and this part is intended for independent classification or reuse. (Example: a blog post, an article, a video file, etc.)
Like <nav>, the title is located inside this element, such as: Example 1:
<h1>My article</h1>
<article>
<p>Blah blah</p>
</article>
This writing method is incorrect in terms of regulations, and should be written as follows:
<article>
<h1>My article</h1>
<p>Blah blah</p>
</article>
<!doctype html>
<html lang=en>
<head>
<title>………</title>
</head>
<body>
<header>
<h2>…</h2>
<nav>…</nav>
</header>
<nav>
<h2>………</h2>
<ul>
<li><a href=#>…………</a></li>
<li><a href=#>…………</a></li>
</ul>
</nav>
<article>
<h1>………</h1>
<p>………</p>
</article>
<article>
<h1>………</h1>
<p>………</p>
</article>
<footer>
<p>
<small>………</small>
</p>
</footer>
</body>