-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (26 loc) · 1.02 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
<!doctype html>
<html>
<head>
<title>dueto de la konstelacioj</title>
<meta charset="UTF-8">
<meta name="description" content="Cooperative local web game for two players. The game can only be interacted with using two keys, one per player.">
<meta name="keywords" content="JavaScript, Phaser, Itch.io, GGJ, duality, game">
<meta name="authors" content="María Ranera, Fen Nicolás">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="lib/phaser.js"></script>
<script type="text/javascript" src="script/game.js"></script>
<script type="text/javascript" src="script/players.js"></script>
<script type="text/javascript" src="script/recipe.js"></script>
<script type="text/javascript" src="script/winlose.js"></script>
<style type="text/css">
body {
margin: 0;
background-color: #000000;
}
</style>
</head>
<body>
<div id="gameContainer"></div>
<script src="script/game.js"></script>
</body>
</html>