-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Pixel Art Maker!</title>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
</head>
<body>
<section id="controls">
<header>
<h1>Lab: Pixel Art Maker</h1>
</header>
<h2>Choose Grid Size</h2>
<form id="sizePicker">
<label for="input_height">Grid Height:
<input type="number" id="input_height" name="height" min="1" max="30" value="1">
</label>
<label for="input_width">Grid Width:
<input type="number" id="input_width" name="width" min="1" max="30" value="1">
</label>
<input type="submit">
</form>
<h2>Pick A Color</h2>
<input type="color" id="colorPicker">
</section>
<section id="canvas">
<h2>Design Canvas</h2>
<section id="controls"> <a id="saveDraw" >Save</a> <a id="loadDraw" >Load</a> </section>
<p id="message"><span></span></p>
<table id="pixel_canvas"></table>
<script src="designs.js"></script>
</body>
</html>