-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (21 loc) · 938 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
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="https://cdn.glitch.com/1bfa9f3a-3a61-4172-afe0-6ba07c2f7c67%2Ffavicon%20(1).ico?1544564471460" rel="shortcut icon" type="image/x-icon" />
<meta property="og:title" content="Dive the Game">
<meta property="og:description" content="Dive the Game">
<meta property="og:image" content="https://cdn.glitch.com/1bfa9f3a-3a61-4172-afe0-6ba07c2f7c67%2FScreen%20Shot%202018-12-05%20at%209.57.44%20PM.png?1544045041602">
<meta property="og:url" content="https://dive-the-game.glitch.me/">
<title>Dive</title>
</head>
<body>
<div id="output"></div>
<input id="input" autofocus>
<!-- Include game data ('disk') -->
<script src="game-disks/unlimited-adventure.js"></script>
<!-- Include game engine -->
<script src="index.js"></script>
<!-- Load disk into engine -->
<script>loadDisk(unlimitedAdventure);</script>
</body>