-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame-end.html
31 lines (31 loc) · 1.19 KB
/
game-end.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>quiz game</title>
<link rel="icon" href="docs/images/profile.jpg" type="image/icon type">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/game-end.css">
</head>
<body>
<div class="container">
<div id="end" class="flex-column">
<h1 id="finalScore">Loading...</h1>
<h2 id="displayText">Olah!</h2>
<table id="wrongAnswersTable" border="1">
<tbody><!-- insert row --></tbody>
</table>
<a href="game.html" class="button button-replay">Play Again</a>
<a href="index.html" class="button button-home">Home</a>
</div>
</div>
<footer>
<div class="footer-icons">
<a href="https://dgbshien.com/" class="icon-home"><img src="docs/images/logo/home.png" alt="Home"></a>
<a href="https://github.com/doggydoggy0101/quiz-game" class="icon-github"><img src="docs/images/logo/github.png" alt="GitHub"></a>
</div>
</footer>
<script src="js/game-end.js"></script>
</body>
</html>