<html>
<head>
<title>hi</title>
</head>
<body>
<p>This text is normal.</p>
<p><em>This text is emphasized.</em></p>
<p><i>This text is italic.</i></p>
<p><strong>This text is strong.</strong></p>
<p><b>This text is bold.</b></p>
<h2>HTML <small>Small</small> Formatting</h2>
<h2>HTML <mark>Marked</mark> Formatting</h2>
<p>The del element represents deleted (removed) text.</p>
<p>My favorite color is <del>blue</del> red.</p>
<p>The ins element represent inserted (added) text.</p>
<p>My favorite <ins>color</ins> is red.</p>
<p>This is <sub>subscripted</sub> text.</p>
<p>This is <sup>superscripted</sup> text.</p>
</body>
</html>
Output Of Code:
This text is normal.
This text is emphasized.
This text is italic.
This text is strong.
This text is bold.
My favorite color is
blue red.
The ins element represent inserted (added) text.
My favorite
color is red.
This is subscripted text.
This is superscripted text.
This text is emphasized.
This text is italic.
This text is strong.
This text is bold.
HTML Small Formatting
HTML Marked Formatting
The del element represents deleted (removed) text.My favorite color is
The ins element represent inserted (added) text.
My favorite
color is red.
This is subscripted text.
This is superscripted text.