-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 1005 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
<!DOCTYPE html>
<html>
<head>
<title>Pixel Art Maker!</title>
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Monoton"> -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Pixel Art Maker</h1>
<h2>Choose Grid Size!</h2>
<form id="sizePicker">
Grid Height:
<input type="number" id="inputHeight" name="height" min="1" value="12">
Grid Width:
<input type="number" id="inputWidth" name="width" min="1" value="12">
<input id="submitButton" type="submit" value="Submit">
</form>
<h2>Pick A Color!</h2>
<input type="color" id="colorPicker">
<h2>Design Canvas</h2>
<table id="pixelCanvas"></table>
<!-- Adding a button to save the current hex color -->
<p>
<form id="hexColor">
Like the color you're using?
<input name="form" type="submit" value="Save Hex #"/>
</form>
</p>
<script src="designs.js"></script>
</body>
</html>