-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (25 loc) · 807 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Javascript Tile Map Editor</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<aside>
<header>
<h1>JS Tile Map Editor</h1>
</header>
<span>Assets</span>
<div id="assets"></div>
<button id="fillAll" class="btn">Fill All</button>
</aside>
<div id="container">
<div id="tiles"></div>
</div>
<small><a href="https://github.com/johnathanmiller/JS-Tile-Map-Editor">Github</a></small>
<script src="jsme.js"></script>
</body>
</html>