html
  1. html-b-tag

HTML <b> Tag

  • The <b> tag in HTML is used to apply bold formatting to the text enclosed within the tag.
  • It is a presentational element, meaning it is used to apply a visual style to the enclosed text without conveying any specific semantic meaning.

<p>This is <b>bold</b> text.</p>
Try Playground

In this example, the word "bold" will be rendered in a bold font within the paragraph. However, it's important to note that the <b> tag doesn't provide any indication of why the text is bold.

Published on: