forked from AswaniPc/basic-html-css-programs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml02.html
More file actions
73 lines (73 loc) · 1.68 KB
/
html02.html
File metadata and controls
73 lines (73 loc) · 1.68 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>drop down</title>
<style type="text/css">
body
{
background-image: url(scn4.jpg);
}
ol,ul
{
padding: 0;
list-style: none;
background:blue;
}
ol li, ul li
{
display: inline-block;
position: relative;
line-height: 21px;
text-align: left;
}
ul li a ,ol li a
{
display: block;
padding: 8px 25px;
color: #333;
text-decoration: none;
}
ul li a:hover,ol li a:hover
{
color:#fff;
background:purple;
}
ol li ul.dropdown
{
min-width: 100%;
background:violet;
display: none;
position: absolute;
z-index: 999;
left: 0;
}
ol li:hover ul.dropdown{
display: block;
}
ol li ul.dropdown li{
display: block;
}
</style>
</head>
<body>
<ol>
<li><a href="#home">HOME</a></li>
<li><a href="#ofcrs">OFFLINE COURSES </a>
<ul class="dropdown">
<li><a href="#">C</a></li>
<li><a href="#">C++</a></li>
<li><a href="#">Java</a></li>
</ul>
</li>
<li><a href="#oncrs">ONLINE COURSES</a>
<ul class="dropdown">
<li><a href="#">C</a></li>
<li><a href="#">C++</a></li>
<li><a href="#">Java</a></li>
</ul>
</li>
<li><a href="#contct">CONTACT</a></li>
<li><a href="#abt">ABOUT US</a></li>
</ol>
</body>
</html>