-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (49 loc) · 1.84 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>3 in 1 Bird</title>
<link rel="icon" type="image/png" href="./src/sprites/redbird-downflap.png"/>
<meta name="description" content="A project for GA">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./src/css/style.css">
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="//cdn.jsdelivr.net/npm/[email protected]/dist/phaser.js"></script>
<script src="./src/Scenes/MainMenu.js" charset="utf-8"></script>
<script src="./src/Scenes/DodgePipes.js" charset="utf-8"></script>
<script src="./src/Scenes/CollectStars.js" charset="utf-8"></script>
<script src="./src/Scenes/DodgeBirds.js" charset="utf-8"></script>
<script src="./src/Scenes/gameOver.js" charset="utf-8"></script>
<script src="./src/main.js" charset="utf-8"></script>
<script src="./src/Scenes/HighScore.js" charset="utf-8"></script>
</head>
<body>
<div id="main">
</div>
<div id="highScore">
<h1>Highscore</h1>
<h1>(HighScore will refresh every second)</h1>
<table>
<tr>
<th>Mode</th>
<th>Highest Score</th>
</tr>
<tr>
<td>Pipes!</td>
<td id="dodgePipes"></td>
</tr>
<tr>
<td>Stars!</td>
<td id="collectStars"></td>
</tr>
<tr>
<td>Birds!</td>
<td id="dodgeBirds"></td>
</tr>
</table>
</div>
</body>
</html>