-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (34 loc) · 1.27 KB
/
popup.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Tnx</title>
<script src="popup.js"></script>
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/js/materialize.min.js"></script>
</head>
<body style="background-color: #FAFAFA">
<div class="container main-div">
<!-- Dropdown Trigger -->
<a class='dropdown-button btn' href='#' data-activates='dropdown1'>Drop Me!</a>
<!-- Dropdown Structure -->
<ul id='dropdown1' class='dropdown-content'>
<li><a href="#!">one</a></li>
<li><a href="#!">two</a></li>
<li class="divider"></li>
<li><a href="#!">three</a></li>
</ul>
<footer class="row footer">
<div class="container">
<a class="text-muted" href="http://ventureinto.space/" target="_blank"> <span
class="glyphicon glyphicon-console"
aria-hidden="true"></span>
Nils Eriksson</a>
<p class="mail text-muted">[email protected]</p>
</div>
</footer>
</div>
</body>
</html>