-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdropdown.html
38 lines (37 loc) · 1.23 KB
/
dropdown.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
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="dropdown.js"></script>
<link rel="stylesheet" href="dropdown.css" type="text/css">
<title>dropdown</title>
</head>
<body>
<p>Katy</p>
<ul class="menuProf">
<li> <a href="#">Professor<img src="https://image.freepik.com/free-icon/down-arrow-hand-drawn-sign_318-53286.jpg"
alt="downarrow"
style="width:9px;height:9px;"></a>
<ul>
<li><a href="#">Laurie Heyer</a></li>
<li><a href="#">Malcolm Campbell</a></li>
<li><a href="#">Raghu Ramanujan</a></li>
<li><a href="#">Chris Paradise</a></li>
</ul>
</li>
</ul>
<ul class="menuDay">
<li> <a href="#">Day<img src="https://image.freepik.com/free-icon/down-arrow-hand-drawn-sign_318-53286.jpg"
alt="downarrow"
style="width:9px;height:9px;"></a>
<ul>
<li><a href="#">Monday</a></li>
<li><a href="#">Tuesday</a></li>
<li><a href="#">Wednesday</a></li>
<li><a href="#">Thursday</a></li>
<li><a href="#">Friday</a></li>
</ul>
</li>
</ul>
</body>
</html>