-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dropdown.html
40 lines (38 loc) · 1.04 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
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<title>Drops</title>
<link rel="stylesheet" href="dropscss.css" />
</head>
<body>
<div class="dropdown" id="dropdown" >
<button class="button" onclick="onClick(event)">
<span>account_circle>
Joe Bako</span>
<span id="chevron" class="chevron">
</span>
</button>
<div id="menu" class="menu">
<div class="menu-inner" >
<button>
<span>build</span>
Tools
</button>
<button>
<span>settings</span>
Settings
</button>
<button>
<span>build</span>
Tools
</button>
<button>
<span>lock</span>
Account
</button>
</div>
</div>
</div>
<script type="text/javascript" src="drps.js"></script>
</body>
</html>