-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 1.35 KB
/
index.html
File metadata and controls
42 lines (39 loc) · 1.35 KB
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/app.css" type="text/css" />
<!-- START_APP_JS -->
<script src="phaserLib/phaser.js"></script>
<script src="js/config.js"></script>
<script src="js/Utils/UtilFunctions.js"></script>
<script src="js/States/StateDefs.js"></script>
<script src="js/Utils/Timer.js"></script>
<script src="js/Utils/IntervalTimer.js"></script>
<script src="js/Utils/RandomIntervalTimer.js"></script>
<script src="js/Utils/CountdownTimer.js"></script>
<script src="js/GameObjects/Bird.js"></script>
<script src="js/GameObjects/Enemy.js"></script>
<script src="js/States/TitleScreenState.js"></script>
<script src="js/States/GameOverScreenState.js"></script>
<script src="js/States/GameScreenState.js"></script>
<script src="js/app.js"></script>
<!-- END_APP_JS -->
</head>
<body>
<div id="content"></div>
<div id="overlay">
<div>
<form name="emailForm" onsubmit="return setEmail();">
<p>Game Over! </p>
<p id="score"></p>
<p id="rank"></p>
<p>Enter your email: </p>
<input type="email" name="email" autofocus>
<input type="submit">
</form>
</div>
</div>
</body>
</html>