-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title>BittMapp</title>
<link rel="stylesheet" href="./static/css/reset.css" />
<link rel="stylesheet" href="./static/css/styles.css" />
<script src="./static/js/dist.js"></script>
</head>
<body>
<header>
<h2>Modes</h2>
<ul id="modes">
<li><a href="#" id="pencil_mode_button">Pencil Mode</a></li>
<li><a href="#" id="eraser_mode_button">Eraser Mode</a></li>
<li><a href="#" id="selection_mode_button">Selection Mode</a></li>
</ul>
<h2>File Options</h2>
<ul id="files">
<li><input type="text" id="open_file_pixelwidth_input" value="32" /> <input type="text" id="open_file_pixelheight_input" value="32" /> <a href="#" id="open_file_button">Open File</a></li>
<li><input type="text" id="filename_input" /> <a href="#" id="save_file_button">Save File</a></li>
</ul>
</header>
<section id="main">
<h3>Editor</h3>
<canvas id="editor"></canvas>
</section>
</body>
</html>