-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (26 loc) · 884 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
<!DOCTYPE html>
<html>
<head>
<title>Pixel Art Maker!</title>
<link href="https://fonts.googleapis.com/css?family=Playfair+Display|Poppins" rel="stylesheet">
<link rel="stylesheet" href="assets/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<h1>Pixel Art Maker.</h1>
<h2>Choose Grid Size</h2>
<form id="size-picker">
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">
</form>
<h2>Pick A Color</h2>
<input type="color" id="color-picker">
<h2>Design Canvas</h2>
<table id="pixel-canvas"></table>
<script src="assets/designs.js"></script>
</body>
</html>