SyntaxStudy
Sign Up
HTML HTML Text Formatting
HTML Beginner 1 min read

HTML Text Formatting

HTML Text Formatting

HTML provides tags to format text, giving it semantic meaning or visual styling.

Formatting Tags

TagResultPurpose
<b>BoldVisual bold (no semantic)
<strong>StrongBold + important meaning
<i>ItalicVisual italic (no semantic)
<em>EmphasisItalic + emphasized meaning
<mark>HighlightHighlighted text
<del>DeletedStruck-through text
<ins>InsertedUnderlined/inserted text
<sub>H2OSubscript
<sup>x2Superscript
Example
<p>This is <strong>very important</strong> and <em>emphasized</em> text.</p>
<p>The price was <del>$99</del> now only <ins>$49</ins>!</p>
<p>Water formula: H<sub>2</sub>O</p>
<p>Area = r<sup>2</sup></p>
<p>Search term: <mark>HTML tutorial</mark></p>