Text formatting in HTML refers to changing the appearance or presentation of text on a web page. HTML provides several elements for making text bold, italic, underlined, highlighted, superscript, subscript, and more.
| Tag | Description |
<b> | Displays text in bold |
<strong> | Indicates important text |
<i> | Displays text in italic |
<em> | Emphasizes text |
<u> | Underlines text |
<mark> | Highlights text |
<small> | Displays smaller text |
<del> | Shows deleted text with a strikethrough |
<ins> | Shows inserted text, usually underlined |
<sub> | Displays subscript text |
<sup> | Displays superscript text |