-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 1.16 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
<!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://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
</head>
<body>
<h1>Lab: Pixel Art Maker</h1>
<div>
<h2>Choose Grid Size</h2>
<form id="sizePicker" class="form">
Grid Height:
<input type="number" id="input_height" name="height" min="1" value="1"> Grid Width:
<input type="number" id="input_width" name="width" min="1" value="1">
<input type="submit" id="button" class="btn">
</form>
<h2>Pick A Color</h2>
<input type="color" id="colorPicker">
<h2>Design Canvas</h2>
<table id="pixel_canvas"></table>
</div>
<script src="designs.js"></script>
</body>
<footer>
<a href="https://fontmeme.com/handwriting-fonts/"><img src="https://fontmeme.com/permalink/171129/7fbcd74dbe57f09c9d4e971fa334edaf.png" alt="handwriting-fonts" border="0"></a>
</footer>
</html>