1
HTML/CSSBeginner#html#structure
<article> is self-contained, independently distributable content (a blog post, a product card). <section> is a thematic grouping of content, usually with a heading, within a larger document. <aside> is tangential content like a sidebar or pull quote, related but separate from the main flow.
<article> <h2>Blog Post Title</h2> <section><h3>Introduction</h3></section> <aside>Related: 5 more posts like this</aside> </article>