-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (31 loc) · 992 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
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Etch-A-Sketch</title>
<link rel='stylesheet' href='styles.css'>
</head>
<body>
<header>
<h1>Etch-A-Sketch</h1>
</header>
<div id='instruction'>
<p>Move your mouse over the boxes to begin your sketch!</p>
</div>
<div id='box-input'>
<form>
<label for='box-input-count'>Enter a number between 1 - 64</label>
<input id='box-input-count' type='number' min=1 max =64>
</form>
</div>
<div id = 'button-inputs'>
<button class ='buttons' id='reset'>Reset</button>
<button class ='buttons' id='color'>Color Change</button>
</div>
<div id='borderContainer'>
<div id='container'>
</div>
</div>
<script src="etchASketch.js"></script>
</body>
</html>