HTML Tutorial
Menu
HTML Forms
Menu
HTML Graphics
Menu
HTML Media
Menu
HTML API
Menu
Html Formatting
HTML has several elements that defines text with a special meaning.
Example
This text is bold
This text is italic
This is subscript and superscript
Output:
This text is bold
This text is italic
This is subscript and superscript
HTML Formatting Elements
Formatting elements are designed to display special types of text format:
<b> – Bold text
<strong> – Important text
<i> – Italic text
<em> – Emphasized text
<mark> – Marked text
<small> – Smaller text
<del> – Deleted text
<ins> – Inserted text
<sub> – Subscript text
<sup> – Superscript text
HTML <b> and <strong> Element
This text is normal.
This text is bold.
This text is important!
Output:
This text is normal.
This text is bold.
This text is important!