HTML uses elements like
Formatting elements were designed to display special types of text:
<b> and <i> for formatting output,
like bold or italic text.Formatting elements were designed to display special types of text:
<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
<b>This text is bold</b>
<strong>This text is strong</strong>
<i>This text is italic</b>
<em>This text is Emphasized text</em>
<mark>This text is Marked text</mark>
<small>This text is Small text</small>
<del>This text is Deleted text</del>
<ins>This text is Inserted text</ins>
<sub>This text is Subscript text</sub>