-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (35 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="game-board">
<canvas id="canvas"></canvas>
</div>
<section class="game-over">
<div class="game-over-container">
<img src="./images/gameOverText.png" alt="button start">
<p class="total-score"> Total Score: <span>0</span> Saved Lives</p>
<span class="link">
<a href="index.html" class="retry">Retry</a>
</span>
</div>
</section>
<script src="js/playLife.js"> </script>
<script src="js/playScore.js"> </script>
<script src="js/bullets.js"> </script>
<script src="js/lives.js"> </script>
<script src="js/obstacle.js"> </script>
<script src="js/player.js"> </script>
<script src="js/background.js"> </script>
<script src="js/sounds.js"></script>
<script src="js/app.js"> </script>
<script src="js/script.js"> </script>
</body>
</html>