-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (43 loc) · 2.08 KB
/
index.html
File metadata and controls
52 lines (43 loc) · 2.08 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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Etch-a-Sketch</title>
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
</head>
<body>
<div class="bg"></div>
<div class="container">
<h1>Etch-a-Sketch</h1>
<div class="divcenter"></div>
<div class="newcontrols">
<div id="left-controller">
<div id="big-size-square"></div>
<div>
<div id="color-controller" class="round-controller outer-sh"><input type="color"
id="hiddencolor" />
<div class="colordisplay"></div>
</div>
</div>
</div>
<div class="midbuttons">
<input type="checkbox" name="" id="randomColor"><label for="randomColor">Random color </label>
<input type="checkbox" name="" id="toggleGrid" checked>
<label for="toggleGrid">Show grid</label>
<input type="button" id="resetButton" value="Reset">
<label for="resetButton">Reset</label>
<input type="range" name="" id="canvasSize2" class="hidden" value="24" min="12" max="64" step="4">
</div>
<div id="right-controller">
<div id="size-controller" class="round-controller outer-sh">
</div>
<div class="infodisplay"><span id="gridSize">16</span></div>
</div>
</div>
</div>
<a href="https://github.com/artlp">Made by artlp</a>
</body>
</html>