-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blob Tile - Maze Generator</title>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet"
/>
<style>
body {
display: flex;
flex-direction: column;
font-family: 'Open Sans', sans-serif;
gap: 8px;
}
h1 {
margin: 0;
}
button {
width: 100px;
}
canvas {
background-color: #ccc;
width: 480px;
height: 480px;
}
</style>
</head>
<body>
<h1>Blob Tile - Maze Generator</h1>
<p>
Blob tileset maze generation based on information here
<a target="_blank" href="http://www.cr31.co.uk/stagecast/wang/blob.html"
>Blob Tileset</a
>.
</p>
<button id="refresh">Generate</button>
<canvas id="canvas" width="480" height="480"></canvas>
<script src="app.js"></script>
</body>
</html>