-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 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>
<meta charset="utf-8">
<title>Pixel Art Maker!</title>
<link href="https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Harmattan&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>Pixel Art Maker</h1>
<span class="material-icons">dark_mode</span>
<div id="pixelForm">
<h2>Select Grid Size Below</h2>
<form method="post">
<label for="inputHeight">Grid Height: </label>
<input type="number" id="inputHeight" name="height" min="1" value="1" max="50">
<label for="inputWidth">Grid Width: </label>
<input type="number" id="inputWidth" name="width" min="1" value="1" max="50">
<input type="button" value="submit" id="submit">
</form>
</div>
<h2>Pick A Color</h2>
<input type="color" id="colorPicker">
<h2>Design Canvas</h2>
<table id="pixelCanvas"></table>
<script src="main.js"></script>
</body>
</html>