-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.29 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
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Game</title>
<script src='https://code.jquery.com/jquery-3.6.0.min.js'></script>
<link rel="stylesheet" type="text/css" href="static/style.css">
<link rel="icon" type="image/x-icon" href="static/favicon.ico">
<script type="text/javascript" src="static/phaser.js"></script>
<script type="text/javascript" src="static/codakid.js"></script>
<script type="text/javascript" src="static/menu.js"></script>
<script type="text/javascript" src="static/shop.js"></script>
<script type="text/javascript" src="static/main.js"></script>
<script type="text/javascript" src="static/enemy.js"></script>
<script type="text/javascript" src="static/functions.js"></script>
<script type="text/javascript" src="static/player.js"></script>
<script type="text/javascript" src="static/coin.js"></script>
<script type="text/javascript" src="static/powerup.js"></script>
</head>
<body>
<noscript>JavaScript is required to play this game.</noscript>
<span>
<div id="game">
<!--<audio id="music", loop>
<source src="assets/music/FranticLevel.mp3" type="audio/mp3">
</audio>-->
</span>
</body>
</html>