-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 841 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>
<meta charset="UTF-8">
<title>Lift Me</title>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="splash-screen">
<div id="splash-text">
<div id="splash-title">Lift Me</div>
<div id="splash-desc">A game with a swinging box</div>
</div>
</div>
<div id="game"></div>
<div id="instructions">
Instructions: Click around. Get <span class="strike">high</span> elevated.
<div id="gh-link">
<a href="https://github.com/j201/lift-me" id="gh-link">
View source on Github
</a>
</div>
<script src="/elm-runtime.js"></script>
<script src="build/Main.js"></script>
<script>
var div = document.getElementById('game');
Elm.embed(Elm.Main, div);
</script>
</body>
</html>