-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
52 lines (45 loc) · 1.23 KB
/
popup.html
File metadata and controls
52 lines (45 loc) · 1.23 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>tmrx's site crazifier</h1>
<div class="options">
<label class="toggle">
<input type="checkbox" id="fonts" checked>
<span class="slider"></span>
Crazy Fonts
</label>
<label class="toggle">
<input type="checkbox" id="colors" checked>
<span class="slider"></span>
Wild Colors
</label>
<label class="toggle">
<input type="checkbox" id="images" checked>
<span class="slider"></span>
Random Images
</label>
<label class="toggle">
<input type="checkbox" id="videos" checked>
<span class="slider"></span>
Video Chaos
</label>
<label class="toggle">
<input type="checkbox" id="cats" checked>
<span class="slider"></span>
Dancing Cats
</label>
<label class="toggle">
<input type="checkbox" id="sounds" checked>
<span class="slider"></span>
Fun Sounds
</label>
</div>
<button id="crazifyBtn">Start the Chaos</button>
</div>
<script src="popup.js"></script>
</body>
</html>