-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (22 loc) · 929 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
<!doctype html>
<html manifest="offlineManifest.appcache">
<head>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta charset="UTF-8" />
<!--<meta name='viewport' content='minimal-ui'>-->
<title>Ludio</title>
<link rel="apple-touch-icon" href="assets/images/icon.png">
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="phaser.min.js"></script>
<script src='game.js'></script>
<!--<script src="//cdn.jsdelivr.net/phaser/2.6.2/phaser.min.js"></script>-->
</head>
<body>
<div class='home' >
<img src ="assets/images/logo.png">
<button onclick='coopGame();'>Co-op mode</button>
</div>
</body>
</html>