-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
36 lines (36 loc) · 1.61 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset=utf-8 />
<title>Maze</title>
<meta id=viewport name=viewport content=width=device-width>
<link rel=stylesheet type=text/css href=font.css>
<link rel=stylesheet type=text/css href=maze.css>
<meta name=description content="A challenging game – navigate the multi-storey maze">
<!-- Facebook Open Graph metadata -->
<meta property=og:url content=https://texttheater.net/maze/>
<meta property=og:title content=Maze>
<meta property=og:description content+"A challenging game – navigate the multi-storey maze">
<meta property=og:image content=https://texttheater.net/maze/image.png>
<meta property=og:image:width content=356>
<meta property=og:image:height content=356>
<!-- Twitter Cards metadata -->
<meta name=twitter:title content=Maze>
<meta name=twitter:card content=summary>
<meta name=twitter:description content="A challenging game – navigate the multi-storey maze">
<meta name=twitter:url content=https://texttheater.net/maze/>
</head>
<body>
<div id=maze>
</div>
<div id=messagebox>
</div>
<a href=https://github.com/texttheater/maze><img style="position: absolute; top: 0; right: 0; border: 0;" src=forkme_right_gray_6d6d6d.png alt="Fork me on GitHub" data-canonical-src=https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png></a>
<script src=jquery-3.7.1.min.js></script>
<script src=maze.js></script>
<script>
var maze = new LevelChooser();
var maze_ui = new LevelChooserUI(maze, $('#maze'), $('#messagebox'), $('#viewport'));
</script>
</body>
</html>