-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 841 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (25 loc) · 841 Bytes
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
<!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'>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
</head>
<body>
<h1>Dee's Pixel Art Maker</h1>
<h2>Choose Grid Size</h2>
<form id='sizePicker'>
Grid Height:
<input type='number' id='inputHeight' name='height' min='1' max='50' value='1'>
Grid Width:
<input type='number' id='inputWidth' name='width' min='1' max='50' value='1'>
<input type='submit'>
</form>
<h2>Pick A Color</h2>
<input type='color' id='colorPicker'>
<h2>Design Canvas</h2>
<table id='pixelCanvas'></table>
<script src='design.js'></script>
</body>
</html>