-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·74 lines (56 loc) · 2.23 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!--
This is a simple 8bit painter made with P5.js
Copyright (C) 2017 Scott Winkelmann
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/canvas.css">
<script src="js/engine.js"></script>
<script src="js/main.js"></script>
<!--<script src="js/brush.js"></script>-->
<script src="js/drawing.js"></script>
<script src="js/palette.js"></script>
</head>
<body>
<ul id="menu">
<li>
<input type="file" id="importJson" class="button"/>
<label for="importJson" class="menu-item">Open</label>
</li>
<li>
<input type="button" id="exportJson" class="button"/>
<label for="exportJson" class="menu-item">Save</label>
</li>
<li>
<input type="button" id="exportBitmap" class="button"/>
<label for="exportBitmap" class="menu-item">Export</label>
</li>
<li>
<input type="button" id="paletteViewer" class="button"/>
<label for="paletteViewer" class="menu-item">Show Palette</label>
</li>
<li>
<input type="button" id="paletteEditor" class="button"/>
<label for="paletteEditor" class="menu-item">Palette Editor</label>
</li>
<li class="menu-align-right">
<a href="https://github.com/ScottishCyclops/js8Bit" class="menu-item">Github</a>
</li>
</ul>
</body>
</html>