-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 896 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
<script src="PixelArt.js"></script>
<title>Pixel Art</title>
</head>
<body>
<div class="colors">
<div id="red"></div>
<div id="orange"></div>
<div id="yellow"></div>
<div id="green"></div>
<div id="blue"></div>
<div id="purple"></div>
<div id="brown"></div>
<div id="black"></div>
</div>
<canvas id="main"></canvas>
<footer>
<p>Para cambiar el color, presione la caja con el color correspondiente.</p>
<p>Barra espaciadora: pintar</p>
<p>Ctrl: borrar</p>
</footer>
</body>
</html>