-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (81 loc) · 1.38 KB
/
index.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
86
87
88
<html>
<title>A simple webpage</title>
<style>
#menubar {
}
ul{
background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
list-style-type:none;
margin:0;
padding:0;
width:500px;
border-radius:5px;
padding:8px;
}
ul li{
display:inline;
position:relative;
}
li a{
text-decoration:none;
padding:7px;
margin:8px;
}
li a:hover{
background-color:green;
color:white;
padding:7px;
border-radius:5px;
}
ul li:hover > ul {
display:block;
position:absolute;
left:20px;
width:80px;
}
ul ul{
display:none;
margin-top:8px;
}
ul ul li{
display:block;
}
ul ul li {
padding:7px;
border-radius:5px;
}
ul li:hover > ul li:hover{
background-color:green;
color:white;
}
</style>
<body>
<div id='menubar'>
<nav>
<ul>
<li><a href="#">Home</a>
<ul>
<li><href a="#">News</a></li>
<li><href a="#">Guestbook</a></li>
</ul>
</li>
<li><a href="#">Animations</a>
<ul>
<li><href a="#">Fireworks</a></li>
<li><href a="#">Solar-system</a></li>
</ul>
</li>
<li><a href="#">Games</a><ul>
<li><href a="#">Snake</a></li>
<li><href a="#">Slot
</a></li>
</ul>
</li>
<li><a href="#">About</a></li>
</ul>
<nav>
</div>
</body>
</html>