-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopdown.html
47 lines (43 loc) · 1.14 KB
/
popdown.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
<!doctype html>
<html>
<head>
<title>Scaling Octo Spoon</title>
<style type="text/css">
body {
margin: 10px;
white-space: nowrap;
}
h1 {
font-size: 15px;
}
#container {
align-items: center;
display: flex;
justify-content: space-between;
}
</style>
<script src="popdown.js"></script>
</head>
<body>
<h1>Scaling Octo Spoon</h1>
<div id="container">
<table>
<tr>
<td>
<select id="dropdown">
<option selected disabled hidden value=''></option>
<option value="translate">EPIC TRANSLATE CIRCLE</option>
<option value="emoji">EMOOJII</option>
<option value="word">SOMETHING DIFFERENT</option>
<option value="rainbow">RAINBOMODE</option>
<option value="random">RANDOM</option>
</select>
</td>
</tr>
<tr>
<td><input type="checkbox" id="catbox"/> <label>CATMODE</label></td>
</tr>
</table>
</div>
</body>
</html>