-
Notifications
You must be signed in to change notification settings - Fork 0
/
sf.html
47 lines (37 loc) · 847 Bytes
/
sf.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.vertical-menu {
margin-top:280px;
width: 500px;
}
.vertical-menu a {
background-color: brown;
color: black;
display: block;
padding:15px;
text-decoration: none;
}
.vertical-menu a:hover {
background-color: #ccc;
}
.vertical-menu a.active {
background-color: #556B2F;
color: white;
}
</style>
</head>
<body>
<h2 style="text-align:center;color: brown;"><a href="home.html">Go to Home</a></h2>
<center>
<div class="vertical-menu">
<a href="#" class="active">Name</a>
<a href="a.html" style="padding-left:450px;">A</a>
<a href="b.html" style="padding-left:450px;">B</a>
<a href="c.html" style="padding-left:450px;">C</a>
</div>
</center>
</body>
</html>