HTML: the b element

The <b> element draws attention to text without saying that the text is more important than the surrounding content.

What you will learn

Draw attention to a keyword

<p>Use the <b>Preview</b> command to check the result.</p>

The b element marks text that deserves attention but does not represent a warning, priority, or stress emphasis. Its default appearance is often bold, but the meaning should guide the choice.

Choose the element by meaning

<p><strong>Warning:</strong> Save your work first.</p>
<p>The word <b>Preview</b> names a command.</p>
<p>I said <em>now</em>, not later.</p>

Common mistakes