-
Notifications
You must be signed in to change notification settings - Fork 9
/
popup.html
69 lines (56 loc) · 2.26 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html>
<head>
<title>Ducky</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="imageDiv">
<img src="resources/img/ducky.png" id="duckyImage">
</div>
<p>My name's Ducky!</p>
<p>Debug with me!</p>
<hr>
<div class="controls ">
<button class="controls__button" id="15min" value="15">Quack in 15 mins</button>
<button class="controls__button" id="cancelAlarm">Cancel Alarm</button>
</div>
<div class="checkbox ">
<input type="checkbox" id="sound" name="sound">
<label class="checkbox__label" for="sound">Play sound</label>
</div>
<div class="social-links ">
<a class="social-links__link" href="https://stackoverflow.com" target="_blank">
<img src="resources/img/stackoverflow.png" alt="StackOverflow" title="StackOverflow" />
</a>
<a class="social-links__link" href="https://github.com" target="_blank">
<img src="resources/img/github.png" alt="GitHub" title="GitHub" />
</a>
<a class="social-links__link" href="https://codepen.io" target="_blank">
<img src="resources/img/codepen.png" alt="CodePen" title="CodePen" />
</a>
<a class="social-links__link" href="https://reddit.com" target="_blank">
<img src="resources/img/reddit.png" alt="Reddit" title="Reddit" />
</a>
<br>
<a id="shortcut1" class="social-links__link" target="_blank">
<img id="favicon1" width="64" height="64">
</a>
<a id="shortcut2" class="social-links__link" target="_blank">
<img id="favicon2" width="64" height="64">
</a>
<a id="shortcut3" class="social-links__link" target="_blank">
<img id="favicon3" width="64" height="64">
</a>
<a id="shortcut4" class="social-links__link" target="_blank">
<img id="favicon4" width="64" height="64">
</a>
</div>
<div class="search">
<input type="text" id="searchTextInput" style="color: initial;"></input>
<button class="controls__button search__submit" id="searchButton">Search in Google</button>
</div>
<audio id="quack" src="resources/audio/quack.mp3"></audio>
<script src="popup.js"></script>
</body>
</html>