HTML: div

The <div> element is a generic container used when no more meaningful semantic element describes the group.

What you will learn

Minimal example

<div class="card">
  <h2>A product</h2>
  <p>A short description.</p>
</div>

The class lets CSS style the group, but <div> does not tell browsers that the content is an article, navigation, or a heading group.

Common mistakes