-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (31 loc) · 1.18 KB
/
index.html
File metadata and controls
44 lines (31 loc) · 1.18 KB
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
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Pixel Art Maker!</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Pixel Art Maker</h1>
<h2>Choose Grid Size</h2>
<form id="sizePicker">
<label for="inputHeight">Grid Height:</label>
<input type="number" id="inputHeight" name="height" min="1" max="100" value="1">
<label for="inputWidth">Grid Width:</label>
<input type="number" id="inputWidth" name="width" min="1" max="100" value="1">
<input type="submit" id="inputSubmit">
</form>
<h2>Pick A Color</h2>
<input type="color" id="colorPicker">
<h2>Design Canvas</h2>
<table id="pixelCanvas"></table>
<script src="js/designs.js"></script>
<!-- allow="autoplay" -->
<iframe src='sounds/goodnight.mp3' type="audio/mp3" id="audio"
style='display:none'></iframe>
<audio preload="auto" autoplay loop controls>
<source src="sounds/goodnight.mp3" type="audio/mp3">
</audio>
</body>
</html>