-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformattingDemoPage.html
76 lines (73 loc) · 1.83 KB
/
formattingDemoPage.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Formatting Demo Page</title>
<h1>Formatting Demo Page</h1>
<p>This simple page demonstrates the formatting tags covered in the lesson</p>
</head>
<body>
<div>
<h2>
<b>
<strong>Bold and Strong</strong>
</b>
</h2>
<b>
<p>This is a bold text</p>
</b>
<p>The strong tag has the same visual effect as the bold tag but the strong tag also marks the enclosed text as more important</p>
<b>This is what strong text looks like.</b>
<h2>
<b>
<strong>Italic and Emphasis</strong>
</b>
</h2>
<p><i>This text is in italic</i></p>
</i>
<p>The emphasis tag has the same visual effect as the italic tag but the emphasis tag also marks the enclosed text as more important</p>
<span><i>This is what emphasixed text looks like</i></span>
</div>
<div>
<h2>
<b>
<strong>Subscript and Superscript</strong>
</b>
</h2>
<span>Subscript text also looks like this:<sub>This is a subscript</sub><br></span>
<span>Superscript text looks like this:<sup>This is superscript</sup></span>
<h2>
<b>
<strong>Inserted and deleted</strong>
</b>
</h2>
<span>Inserted text looks like this: <ins>This is inserted</ins><br></span>
<span>Deleted text also looks like this: <del>This is deleted</del></span>
</div>
<div>
<h2>
<b>
<strong>Marked</strong>
</b>
</h2>
<p>
Marked text looks like this:<span style="background-color: yellow">This is marked</span>
</p>
<h2>
<b>
<strong>Blockquote</strong>
</b>
</h2>
<p>Blockquoted text looks like this</p>
<blockquote>
This is the blockquote
</blockquote>
<h2>
<b>
<strong>Code</strong>
</b>
</h2>
<p>Computer code text looks like this:<code> This is code</code></p>
</div>
</body>
</html>