inline text formating with HTML
This is standard text, and this is important text.
<p>This is standard text,<strong>and this is important text.</strong></p>(the element "strong" overrides all previous styling)
This is standard text, and this is bold text.
<p>This is standard text,<b>and this is bold text.</b></p>This is normal text, and this is emphasised text.
<p>This is normal text, <em>and this is emphasized text.</em></p>(this element is mostly useful for screen readers)
This is normal text, and this is italic text.
<p>This is normal text, <i>and this is italic text.</i></p>This is an example of an underlined word.
<p>This is an example of <u>underlined </u>word</p>This is normal text, this is strikethrough text.
This is an example of using highlight
<p>This is an example of using <mark>highlight</mark></p>The formula for water is H2O
<p>The formula for water is H<sub>2</sub>O</p>The formula for 2 squared is 22
<p>The formula for 2 squared is 2<sup>2</sup></p>