-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 928 Bytes
/
index.html
File metadata and controls
31 lines (26 loc) · 928 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
29
30
31
<!DOCTYPE html>
<html>
<head>
<title>Pixel Art Editor ♡ </title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu">
<link rel="stylesheet" href="pixel.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<meta charset="UTF-8">
</head>
<body>
<h1>pixls<img src="menu.png"> </h1>
<h2>grid size</h2>
<form id="sizePicker">
grid height:
<input type="number" id="input_height" name="height" min="1" value="5">
grid width:
<input type="number" id="input_width" name="width" min="1" value="5">
<input type="submit">
</form>
<h2>color</h2>
<input type="color" id="colorPicker">
<table id="pixel_canvas">
</table>
<script src="pixel.js"></script>
</body>
</html>