-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (70 loc) · 1.9 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
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
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
margin: 0;
padding: 0;
}
header {
background-color: #007bff;
color: #fff;
text-align: center;
padding: 20px;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 18px;
margin-top: 20px;
}
ol {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 10px;
}
a {
text-decoration: none;
color: #007bff;
}
a:hover {
text-decoration: underline;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
}
</style>
</head>
<body>
<header>
<h1>Welcome to the Index Page</h1>
</header>
<div class="container">
<h2>Links to Other Pages:</h2>
<ol>
<li><a href="Comments.html">Comments Example</a></li>
<li><a href="form.html">Form Example</a></li>
<li><a href="Formating.html">Formatting Example</a></li>
<li><a href="Heading.html">Heading Example</a></li>
<li><a href="iframe.html">iframe Example</a></li>
<li><a href="images.html">Images Example</a></li>
<li><a href="link.html">Link Example</a></li>
<li><a href="list.html">List Example</a></li>
<li><a href="Paragraph.html">Paragraph Example</a></li>
<li><a href="table.html">Table Example</a></li>
</ol>
</div>
</body>
</html>