forked from kmcgrady/pixel-art-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (25 loc) · 899 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
32
33
34
35
<meta charset="UTF-8">
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>MiG's Pixel Art Maker</h1>
<div id="canvas">
</div>
<br>
<div id="palette">
</div>
<div id="currentColor">
<p> Current color:</p>
</div>
<input class= "tools" type="radio" name="grid" value="grid" checked> show grid
<input class= "tools" type="radio" name="grid" value="none"> hide grid
<input class= "tools" type="color" id="picker" value="#ff0000">
<button class="tools" type="button" id="save">Save</button>
<button class="tools" type="button" id="load">Load</button>
<button class="tools" type="button" id="flood">Fill with current color</button>
<!--<!–<input type="range" id="range" name="size" min="1" max="10">–>-->
<script src="pixel-art.js"></script>
</body>
</html>