summaryrefslogtreecommitdiff
path: root/static/index.html
blob: 9a274223e8ba7a485c0983ec7608743ca263a528 (plain)
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
<!doctype html>
<html lang="en">
	<head>
		<meta charset="utf-8">
		<title>Level Generation</title>
		<style>
			html, body, canvas {
				margin: 0px;
				padding: 0px;
				overflow: hidden;
			}
            canvas {
				width: 350px;
				height: 350px;
            }
		</style>
	</head>
	<body>
		<canvas id="canvas"></canvas>
        <div>
        <button id="new">New</button>
        </div>
		<script src="web.js"></script>
	</body>
</html>