HTML Topics
HTML Module
HTML Text Formatting
HTML defines special elements for defining text with a special meaning. Text formatting elements are used to display special types of text like bold, italic, highlighted, subscripted, or superscripted.
Status: Coming Soon
We are crafting this tutorial
Our team is working on interactive diagrams, code challenges, and exercises for HTML Text Formatting. Check back soon for the full guide!
What You'll Learn
- 1Semantic text highlights: Differentiating <strong> from <b>
- 2Emphasizing text semantically: Differentiating <em> from <i>
- 3Highlighting search terms or references with <mark>
- 4Creating formulas and notes using subscript (<sub>) & superscript (<sup>)
- 5Document history trackers: Deleted text (<del>) and inserted text (<ins>)
sandbox.html
<p>This is <strong>strongly important</strong> text, not just <b>bold</b>.</p>
<p>Water chemical formula: H<sub>2</sub>O</p>
<p>Einstein equation: E = mc<sup>2</sup></p>
<p>Special Offer: <del>$99.99</del> <ins>$49.99</ins> <mark>Save 50%!</mark></p>Interactive playground coming soon