-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDropDownNavBar-1.html
85 lines (84 loc) · 2.53 KB
/
DropDownNavBar-1.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
83
84
85
<!DOCTYPE html>
<html>
<head> <title>
DropDown Navigation Bar-1
</title>
<style>
body{
margin: 0px;
background-color: #f2f2f2;
}
.nav{
width: 100%;
background-color: #000033;
height: 80px;
}
ul{
list-style: none;
padding: 0px;
margin: 0px;
position: absolute;
}
ul li{
float: left;
margin-top: 20px;
}
ul li a{
width: 150px;
color: white;
display: block;
text-decoration: none;
font-size: 20px;
text-align: center;
padding: 10px;
border-radius: 10px;
font-family: Century Gothic;
font-weight: bold;
}
a:hover{
background-color: #669900;
}
ul li ul{
background-color: #000033;
display: none;
}
ul li ul li{
float: none;
}
ul li:hover ul{
display: block;
}
</style>
</head>
<body>
<nav>
<div class="nav">
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Home</a></li>
<li><a href="#">Chemistry</a><ul>
<li><a href="#">Basic Chemistry</a></li>
<li><a href="#">Organic Chemistry</a></li>
<li><a href="#">Inorganic Chemistry</a></li>
<li><a href="#">Physical Chemistry</a></li>
<li><a href="#">Analytical Chemistry</a></li>
</ul></li>
<li><a href="#">Computer Science</a><ul>
<li><a href="#">Introduction to Programming</a></li>
<li><a href="#">Object Oriented Programming</a></li>
<li><a href="#">Data Sturcture and Algorithms</a></li>
<li><a href="#">Database</a></li>
<li><a href="#">Networking</a></li>
</ul></li>
<li><a href="#">TopFive</a><ul>
<li><a href="#">TopFive Programming Languages</a></li>
<li><a href="#">TopFive Books on Chemistry/a></li>
<li><a href="#">TopFive Books on Computer Science</a></li>
<li><a href="#">TopFive Online Resources to Learn Chemistry</a></li>
<li><a href="#">TopFive Online Resources to Learn OOPs</a></li>
</ul></li>
</ul>
</div>
</nav>
</body>
</html>