-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.27 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
45
46
47
48
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<script type="text/javascript" src="lib/phaser.min.js" ></script>
<script type="text/javascript" src="js/start.js" ></script>
<script type="text/javascript" src="js/states/preloader.js" ></script>
<script type="text/javascript" src="js/states/blau.js" ></script>
<script type="text/javascript" src="js/states/gruen.js" ></script>
<script type="text/javascript" src="js/states/world.js" ></script>
<title>DrogenSpiel</title>
<style media="screen">
body{
text-align: center;
background-color: black;
color:white;
}
a{
color:white;
text-decoration: none;
font-weight: bold;
}
canvas {
display: inline-block !important;
}
#infos{
position: fixed;
bottom: 0px;
text-align: center;
left:0px;
right: 0px;
}
</style>
<script type="text/javascript">
</script>
</head>
<body >
<h1>Drooooogen</h1>
<div id="infos"><span>Alle infos zum gamejam an der HS Mannheim <a href="gameorama.org/hsgamejamss15/">hier</a></span></div>
</body>
</html>