Container Tags

<main>
contains section
, article
, and aside
.
<main>
contains all the main content of the webpage.
<section>
are blocks of primary content
<article>
are small, independent blocks of secondary content.
<aside>
are minor tertiary content that’s set aside from the main content.
- Use
<div>
and <span>
for low-level containers.
<div>
Creates a new block for the container.
<span>
Creates the container inline.