-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdropdown Menu.htm
131 lines (120 loc) · 3.5 KB
/
dropdown Menu.htm
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>vijay</title>
<style type="text/css">
ul {
font-family: Arial, Verdana;
font-size: 14px;
margin: 0;
padding: 0;
list-style-type:none;
width:100px;
}
ul li {
display: block;
position: relative;
}
li ul {
display: none;
}
ul li a {
display: block;
text-decoration: none;
color: #ffffff;
border-top: 1px solid #ffffff;
padding: 5px 15px 5px 15px;
background: #1e7c9a;
margin-left: 1px;
white-space: nowrap;
}
ul li a:hover {
background: #3b3b3b;
}
li:hover ul {
display: block;
position:absolute;
margin-left:100px;
margin-top:-25px;
}
li:hover li {
float: none;
font-size: 11px;
}
li:hover a { background: #3b3b3b; }
li:hover li a:hover {
background: #1e7c9a;
}
</style>
</head>
<body>
<ul id="menu">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a>
<ul>
<li><a href="#">The Team</a></li>
<li><a href="#">History</a></li>
<li><a href="#">Vision</a></li>
</ul>
</li>
<li><a href="#">Products</a>
<ul>
<li><a href="#">Cozy Couch</a></li>
<li><a href="#">Great Table</a></li>
<li><a href="#">Small Chair</a></li>
<li><a href="#">Shiny Shelf</a></li>
<li><a href="#">Invisible Nothing</a></li>
</ul>
</li>
<li><a href="#">Contact</a>
<ul>
<li><a href="#">Online</a></li>
<li><a href="#">Right Here</a></li>
<li><a href="#">Somewhere Else</a></li>
</ul>
</li>
</ul>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td height="55" align="center">
<ul>
<li>
<a href="#"><img src="https://hrteamspace.pg.com/sites/gbuhr/Site Pages/Images/the_team_button.jpg" width="174" height="61" border="0" /></a>
</li>
<li>
<a href="#"><img src="https://hrteamspace.pg.com/sites/gbuhr/Site Pages/Images/processes_button.jpg" width="174" height="61" border="0" /></a>
</li>
<li>
<a id="repMenu" href="#"><img src="https://hrteamspace.pg.com/sites/gbuhr/Site Pages/Images/reports_button.jpg" width="174" height="61" border="0" /></a>
<ul>
<li><div class="report_sub_nav"><a href="#">Report 1</a></div></li>
<li><div class="report_sub_nav"><a href="#">Report 1</a></div></li>
<li><div class="report_sub_nav"><a href="#">Report 1</a></div></li>
<li><div class="report_sub_nav"><a href="#">Report 1</a></div></li>
<li><div class="report_sub_nav"><a href="#">Report 1</a></div></li>
</ul>
</li>
<li>
<a href="#"><img id="imgreports" src="https://hrteamspace.pg.com/sites/gbuhr/Site Pages/Images/capability_button.jpg" width="174" height="62" border="0" /></a>
</li>
<li>
<a href="#"><img src="https://hrteamspace.pg.com/sites/gbuhr/Site Pages/Images/calender_button.jpg" width="174" height="61" border="0" /></a>
</li>
</ul>
</td>
</tr>
<tr>
<td align="left" id="sidebar_list">
<ul>
<li><a href="#">Sample Links</a></li>
<li><a href="#">Sample Links</a></li>
<li><a href="#">Sample Links</a></li>
<li><a href="#">Sample Links</a></li>
<li><a href="#">Sample Links</a></li>
</ul>
</td>
</tr>
</table>
</body>
</html>