-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgame.html
More file actions
25 lines (23 loc) · 910 Bytes
/
game.html
File metadata and controls
25 lines (23 loc) · 910 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="script/phaser.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
<link rel="stylesheet" href="CSS/style.css" type="text/css"/>
<script type="text/javascript" src="script/Preload.js"></script>
<script type="text/javascript" src="script/Game.js"></script>
<script type="text/javascript" src="script/Boot.js"></script>
<script src="script/State.js"></script>
</head>
<body>
<div id="GameScreen" class="screen">
<div id="dress1"></div>
<div id="hearts">
<div class="heart"></div>
<div class="heart"></div>
<div class="heart"></div>
</div>
</div>
<audio autoplay src="assets/music.mp3"/>
</body>
</html>