b

Support

Specifies that the enclosed text should be displayed in bold.

The b tag is a predefined element to allow authors the insertion of bold text without any CSS styling.

Note that the font-weight style property provides more possible font weight settings for texts.

Example

<p>
    Normal text 
<b>bold text</b>
<i>italic text</i>
normal text. </p>

Preview

Normal text bold text italic text normal text.