HTML Formatting Elements
<b> - Bold text
<strong> - Important text
<i> - Italic text
<em> - Emphasized text
<mark> - Marked text
<small> - Small text
<del> - Deleted text
<ins> - Inserted text
<sub> - Subscript text
<sup> - Superscript text
HTML Formatting Example
<!DOCTYPE html>
<html>
<body>
<p><b>This text is bold.</b></p>
<p><strong>This text is strong</strong></p>
<p><i>This text is italic</i></p>
<p><em>This text is emphasized</em></p>
<p>This is <small>Small</small> Formatting</p>
<p>This is <mark>Marked</mark> Formatting</p>
<p>This text is <del>del</del>.</p>
<p>This is <ins>ins</ins>.</p>
<p>This is <sub>subscripted</sub> text.</p>
<p>This is <sup>superscripted</sup> text.</p>
</body>
</html>