-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgameover.html
More file actions
25 lines (22 loc) · 739 Bytes
/
gameover.html
File metadata and controls
25 lines (22 loc) · 739 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Space Explorers</title>
<link rel="shortcut icon" href="./assets/planet.png" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
</head>
<body class="flex_centre">
<div class="title over">GAME OVER</div>
<div id="highScore">HIGH SCORE: <span id="PlayerHighScore"></span></div>
<div class="score">SCORE: <span id="scores"></span></div>
<br>
<br>
<br>
<div class="lists message" id = 'mess'></div>
<button id="play-again">Play Again</button>
<button id="Home">Home</button>
</body>
<script src="gameover.js"></script>
</html>