HTML bold tag is represented by <b>
tag. It is used to display the written text in bold format. It is a paired tag. If you want to show your text in bold letters, then put it within <b>
. . . </b>
tag.
Here are the example of html bold text:
This is normal text.
This is Bold Text.Here is the example of html strong tag.
This is Normal text
This Text is StrongThe bold tag in html is represented by <b>
tag which is explicit whereas <strong>
tag is semantic. The <b>
tag is for "offset text conventionally styled in bold".
If you read deeper into the details you'll see it adds, "without conveying any extra emphasis or importance".
The <strong>
tag adds extra semantic meaning and importance to the HTML document.
It is recommended to use strong tag for bold format now.
<bold> |
Follow Us: