-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
50 lines (43 loc) · 928 Bytes
/
about.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>ABOUT</title>
</head>
<style media="screen">
div ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
div li {
float: left;
}
div li a {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
div li a:hover {
background-color: #111;
}
div li a.active {
background-color: red;
}
</style>
<body style="background-color: #00b8a9;">
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="hobbies.html">News</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="about.html" class="active">About</a></li>
</ul>
</div>
<hr size = "2" noshade color = "green">
</body>
</html>