HTML — HTML5 Structural Tags
HTML5 introduced new tags to better structure your webpage:
<article>
: Self-contained content<section>
: Thematic grouping<aside>
: Sidebar info<figure>
: For images with captions
<article>
<h2>Blog Post</h2>
<p>This is a blog post.</p>
</article>
<aside>
<p>Related articles</p>
</aside>