HTML Text Formatting
HTML Text Formatting
On this page
HTML Text Formatting
HTML Text Formatting
<!DOCTYPE html>
<html>
<head>
<title>HTML Text Formatting</title>
</head>
<body>
<p><b>This text is bold</b></p>
<p><i>This text is italic</i></p>
<p>The chemical name of water is H<sub>2</sub>O</p>
<p> This is a <sup>Superscript</sup> text</p>
<p>This text to highlight <mark>Hello World</mark></p>
<p><strong> This text is important bold</strong></p>
<p><em>This text is emphasized</em></p>
<p><small>This is some smaller text</small></p>
<p>My favorite color is <del>green</del> blue.</p>
<p>My favorite color is <del>pink</del> <ins>red</ins>.</p>
</body>
</html>
Output
This text is bold
This text is italic
This text to highlight Hello World
This text is important bold
This text is emphasized
This is some smaller text
My favorite color is green blue.
My favorite color is pink red.