-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (28 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>Pixel Art Maker!</title>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" href="assets/styles.css">
</head>
<body>
<h1> Pixel Art Maker </h1>
<h2>Pick A Color 🎨</h2>
<input type="color" id="colorPicker">
<h2>📏 Choose Grid Size </h2>
<form id="sizePicker">
<label>Grid Height:</label>
<input type="number" id="input_height" name="height" min="1" value="1" max="120">
<label>Grid Width:</label>
<input type="number" id="input_width" name="width" min="1" value="1" max="120"><br>
<label>Cell size:</label>
<input type="number" id="input_size" name="size" min="10" value="10" max="30"><br>
<button id="input_submit"> Create a grid </button>
<button id="input_reset"> Start Again </button>
</form>
<h2> Design Canvas </h2>
<table id="pixel_canvas"></table>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/designs.js"></script>
</body>
</html>