-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 909 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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Etch-A-Sketch</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 class="main-title">Etch-A-Sketch</h1>
<h3 class="my-name">Brett Peters</h3>
<div class="canvas"></div>
<div class="settings">
<button id="erase">Erase</button>
<form action="#" id="drawing-area">
<label for="block-size">Block Size:</label>
<input type="range" id="block-size" name="block-size" min="2" max="64" step="2"/>
<input type="submit" value="Re-draw Grid" />
</form>
<form action="#" id="color">
<input type="color" id="color-value" />
<input type="submit" value="Change Color"/>
</form>
</div>
</body>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/index.js"></script>
</html>