-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTASK4CSS.html
More file actions
50 lines (43 loc) · 1.14 KB
/
TASK4CSS.html
File metadata and controls
50 lines (43 loc) · 1.14 KB
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>
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
background-color: #f1f1f1;
border: 1px solid black;
padding: 10px;
}
li a {
display: block;
padding: 8px 16px;
text-decoration: none;
color: blue;
}
.c1 {
background-color: orange;
}
.c2 {
background-color: rgb(113, 221, 238);
}
li a:hover {
background-color: #555;
color: white;
}
</style>
</head>
<body>
<p>Vertical Navigation Bar
<p>
<ul>
<li class="c1"><a href="#home">Home</a></li>
<li class="c2"><a href="#Java">Java</a></li>
<li class="c2"><a href="#CSS">CSS</a></li>
<li class="c2"><a href="#HTML">HTML</a></li>
<li class="c2"><a href="#Bootstrap">Bootstrap</a></li>
</ul>
</body>
</html>