-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage4.html
70 lines (70 loc) · 1.81 KB
/
page4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Text</title>
</head>
<body>
<center>
<ins
><em
><h1>Chapter 2 <br />Text</h1></em
></ins
>
<hr />
</center>
<ins><h1>Headings</h1></ins>
<ul>
<li><h1>< h1></h1></li>
<li><h1>< h2></h1></li>
<li><h1>< h3></h1></li>
<li><h1>< h4></h1></li>
<li><h1>< h5></h1></li>
<li><h1>< h6></h1></li>
</ul>
<hr />
<center>
<ins><h1>Example</h1></ins>
</center>
<center>
<table border="2">
<thead>
<tr>
<th><h1>HTML</h1></th>
<th><h1>Result</h1></th>
</tr>
</thead>
<tbody>
<tr>
<th>< h1>This is a Main Heading< /h1></th>
<th><h1>This is a Main Heading</h1></th>
</tr>
<tr>
<th>< h2>This is a Level 2 Heading< /h2></th>
<th><h2>This is a Level 2 Heading</h2></th>
</tr>
<tr>
<th>< h3>This is a Level 3 Heading< /h3></th>
<th><h3>This is a Level 3 Heading</h3></th>
</tr>
<tr>
<th>< h4>This is a Level 4 Heading< /h4></th>
<th><h4>This is a Level 4 Heading</h4></th>
</tr>
<tr>
<th>< h5>This is a Level 5 Heading< /h5></th>
<th><h5>This is a Level 5 Heading</h5></th>
</tr>
<tr>
<th>< h6>This is a Level 6 Heading< /h6></th>
<th><h6>This is a Level 6 Heading</h6></th>
</tr>
</tbody>
</table>
</center>
<hr>
<center><h3>04</h3></center>
<center><p><a href="page5.html">Next page</a></p></center> <hr>
</body>
</html>