-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (37 loc) · 1.22 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Etch-Your-Sketch :: TOP</title>
<meta name="author" content="Ben Steel">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="styles/style.css" rel="stylesheet">
</head>
<body>
<div class="drawing-board" id="drawing-board">
</div>
<div class="container" id="main">
<div class="controls column-1" id="controls">
<ul>
<li> <label for="number-of-grid-squares"> Size </label>
<input id="number-of-grid-squares" name="number-of-grid-squares" type="number"></li>
<li> <label for="color-picker">Color</label>
<input id="color-picker" name="color-picker" type="color">
</li>
<li> <button id="draw-mode">Mode: Normal</button></li>
<li> <button id="reset"> Reset</button>
</li>
<li> <button id="toggle-grid"> Toggle Grid </button>
</li>
</ul>
</div>
<div class="text column-2">
<h1 class="title">Etch-Your-Sketch</h1>
<h3>Instructions</h3>
<p> Press 'd' to enable / disable cursor drawing</p>
</div>
</div>
<script src="js/main.js"></script>
</body>
</html>