-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (24 loc) · 977 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<div id="my-container" class="container"></div>
<div id="my-menu-container" class="menu-container">
<label class="input-label">SIZE</label>
<input id="my-size" type="number" min="16" max="32" step="4" value="16">
<label class="input-label">SPEED</label>
<input id="my-speed" type="number" min=".5" max="3" step=".5" value=".5">
<label class="input-label">RANDOM</label>
<input id="my-random" type="checkbox" checked>
<label class="input-label">COLOR BACKGROUND</label>
<input id="my-color-background" type="color" value="#c1e6e4">
<label class="input-label">COLOR 1</label>
<input id="my-color-light" type="color" value="#f1f3d8">
<label class="input-label">COLOR 2</label>
<input id="my-color-dark" type="color" value="#1a63a2">
</div>
</body>
</html>