HTML Text Formatting

HTML contains a few elements that define text with a special meaning.

Example

This text is bold

This text is italic

This is subscript and superscript



HTML <br> and Elements

The HTML element <b> defines bold text, without added value.

Example
<b>This text is bold</b>


The HTML <strong> feature defines the text with the strongest value. Internal content is usually displayed in bold.

Example
<strong>This text is important!</strong>