-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 946 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
body {
text-align: center;
font-size: 1.2em;
}
nav {
display: inline-block;
text-align: left;
padding-bottom: 40px; /* added padding */
}
ul {
list-style-type: none;
}
li {
display: inline-block;
margin-right: 20px;
}
.hr-centered {
max-width: 20%;
margin: 0 auto;
}
</style>
</head>
<body>
<h1>Welcome to my website!</h1>
<p>Click on the links below to navigate to other pages.</p>
<nav>
<ul>
<li><a href="rats/">Rats</a></li>
<li><a href="fish/">Fish</a></li>
<li><a href="scotland/">Scotland</a></li>
<li><a href="test.html">Login</a></li>
</ul>
</nav>
<hr class="hr-centered">
<h2>About Me</h2>
<p>Hi, my name is Sam and I am a computer engineer. I created this website to show spinning rat gifs.</p>
</body>
</html>