how to use bold tag in html

The <b> tag should be used to markup text as bold without conveying any extra importance, for example in article abstracts, where the beginning of an article is set in bold text. It should not be used to convey extra importance. To convey extra importance, use the <strong> tag. To emphasize text, use the <em> tag.

Syntax

The <b> tag is written as <b></b> with the text to be bold inserted between the start and end tags.

<b>bold text</b>

Example

Leave a Comment