<div> and <span>
Two generic containers for grouping and styling. No semantic meaning.
<div> = block container (sections, cards, wrappers)
<div class="card">
<h2>Title</h2>
<p>Content here...</p>
</div>
<span> = inline container (highlight a word, style part of text)
<p>The price is <span class="price">$99</span> today!</p>