HTML Formatting

HTML provides us with several tags to help format text, <b> for bold, <i> for italic, <u> for underlining, etc. These tags are divided into two categories:

Physical Tags: These tags are presentational. They don't add extra meaning to the text. For example,

Here, the <i> is only for text styling and has no other meaning.

Semantic Tags: These tags add some special meaning to the text along with adding style to the text. For example,

HTML Formatting tags

Below are listed the formatting tags available in the latest version of HTML.

<b> tag - Bold Text

<i> tag - Italic Text

<u> tag - Underlined Text

<strong> tag - Strong Text

<em> tag - Emphasized Text

<mark> tag - Highlighted Text

<sup> tag - Superscript Text

<sub> tag - Subscript Text

<del> tag - Deleted Text

<ins> tag - Inserted Text

<big> tag - Big Text

<small> tag - Small Text

Read More