forked from sashman/kingdomforge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (39 loc) · 951 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script src="lib/crafty-min.js"></script>
<script src="src/map.js"></script>
<script src="src/networking.js"></script>
<script src="src/player.js"></script>
<script src="src/game.js"></script>
<script>
window.addEventListener('load', Game.start);
</script>
<style type="text/css" media="screen">
body {
background: black;
text-align: center;
color: #DDD;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.controls {
color: #BBB;
}
#cr-stage { margin: 20px auto 0; }
.bottom {
font-size: 12px;
color: #888;
margin-top: 50px;
}
.bottom a {
color: #AAA;
}
</style>
<title>KingdomForge</title>
</head>
<body>
<h1>KingdomForge</h1>
</body>
</html>