-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest2.html
More file actions
71 lines (64 loc) · 1.1 KB
/
test2.html
File metadata and controls
71 lines (64 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>html02</title>
<style type="text/css">
ol li
{
display: inline-block;
line-height:20px;
text-align: left;
position: relative;
}
ol,ul
{
background-color:purple;
list-style: none;
padding: 0;
}
a
{
padding: 8px 25px;
color: white;
text-decoration: none;
display: block;
}
ol li a:hover,ul li a:hover
{
color: pink;
background: violet;
}
ol li ul#drop
{
min-width: 100%;
background: #f2f2f2;
display: none;
position: absolute;
z-index: 999;
left: 0;
}
ol li:hover ul#drop
{
display: block;
}
ol li ul#drop li
{
display: block;
}
</style>
</head>
<body>
<ol>
<li><a href="#home">HOME</a></li>
<li><a href="#ofcrs">OFFLINE COURSES</a>
<ul id="drop">
<li>java</li>
<li>php</li>
</ul>
</li>
<li><a href="#oncrs">ONLINE COURSES</a></li>
<li><a href="#contct">CONTACT</a></li>
<li><a href="#abt">ABOUT US</a></li>
</ol>
</body>
</html>