-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (24 loc) · 1.06 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Text Formatting tags</title>
</head>
<body>
<h1>Text Formatting Example</h1>
<p>This is <b>important</b> text.</p>
<p>This is <em>emphasized</em> text.</p>
<p>This is <u>underlined</u> text.</p>
<p>This is <s>strikethrough</s> text.</p>
<p>This is <sup>superscript</sup> and this is <sub>subscript</sub> text.</p>
<p>This is <code>code</code> text</p>
<p>These tags will be used to make a <b>nold, </b><i>italic, </i>and <u>underline</u> styles.</p>
<code>This is performatted text.</code>
<br>
<code>It preserves white space and line breaks.</code>
<p>This is a block quote.</p>
<p>It can be used to indicate a long quotation that is set off from the main text.<br>
<sup>Superscript text appears half a character above the normal line, and is sometimes rendered in a smaller font</sup> <sub>Superscript text can be used for footnotes like www.</sub></p>
</body>
</html>