Definition
The <b>
element is used to make text bold. You use it when you want to make a word or phrase bold, but not give it any special importance.
<p>You might want to call attention to <b>this</b> word.</p>
It’s better practice to use the font-weight
CSS property instead of the <b>
element. With font-weight
, you can have more control over the boldness of the text.