-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
39 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html>
<body>
<link href="https://fonts.googleapis.com/css?family=League+Script" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lobster">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script type="text/javascript" src="popupjs.js"></script>
<link rel="stylesheet" href="popup.css">
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDuEbfs5Xb5cL_0jjKPZe3ngrZlfrVjeyo&libraries=places&callback=initAutocomplete"
async defer>
</script>
<div class="relative">
<img id="logo" src="/logo.png">
<p class="absolute-text">Shh..</p>
</div>
<br>
<form id="frm1">
<input id="locationInput" type="text" placeholder="Enter Zone"><br>
</form>
<div class="container-fluid">
<ul id="buttonHolder">
<li><a href="#" id ="mutenew" class="round green">New<span class="round">Mute all new tabs</span></a></li>
<li><a href="#" class="round red">Mute<span id ="muteall" class="round">Mute all open tabs</span></a></li>
<li><a href="#" id ="unmuteall" class="round yellow">Unmute<span class="round">Unmute all open tabs</span></a></li>
</ul>
</div>
<p id="demo"></p>
<ul id="locationHolder">
</ul>
</body>
</html>