pixel-art-maker/index.html

17 lines
312 B
HTML
Raw Normal View History

2016-05-13 14:48:17 -07:00
<!DOCTYPE html>
<html>
<head>
2016-05-15 07:49:24 -07:00
<meta charset="utf-8">
<title>Pixel Art Maker</title>
<link rel="stylesheet" type="text/css" href="app.css" />
2016-05-13 14:48:17 -07:00
</head>
<body>
2016-05-15 07:54:03 -07:00
<main>
2016-05-15 07:49:24 -07:00
<div id="canvas"></div>
<div id="palette"></div>
2016-05-15 07:54:03 -07:00
</main>
2016-05-15 07:49:24 -07:00
2016-05-13 14:48:17 -07:00
<script src="app.js"></script>
</body>
</html>