Saturday, June 3, 2017

How to write bold and strong elements?

The HTML <b> element defines bold text, without any extra importance.

Example

<b>This text is bold</b>
 
 
The HTML <strong> element defines strong text, with added semantic "strong" importance.

Example

<strong>This text is strong</strong>