HTML Text Formatting
HTML provides tags to format text, giving it semantic meaning or visual styling.
Formatting Tags
| Tag | Result | Purpose |
|---|---|---|
<b> | Bold | Visual bold (no semantic) |
<strong> | Strong | Bold + important meaning |
<i> | Italic | Visual italic (no semantic) |
<em> | Emphasis | Italic + emphasized meaning |
<mark> | Highlight | Highlighted text |
<del> | Struck-through text | |
<ins> | Inserted | Underlined/inserted text |
<sub> | H2O | Subscript |
<sup> | x2 | Superscript |