generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscore.html
46 lines (46 loc) · 2.38 KB
/
score.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
<!DOCTYPE html>
<html lang="en-GB">
<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">
<meta name="description" content="This is Portfolio Project#2 created by Aleksander Kisielewicz">
<meta name="keywords" content="quiz, JavaScript">
<meta name="author" content="Aleksander Kisielewicz">
<script src="assets/js/gameresult.js" defer></script>
<!-- script for Font Awesome Kit -->
<script src="https://kit.fontawesome.com/baf9609738.js" crossorigin="anonymous"></script>
<!-- Custom CSS stylesheet -->
<link href="assets/css/style.css" rel="Stylesheet" type="text/css">
<!-- links to favicon generated on favicon.io START -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<!-- links to favicon generated on favicon.io END -->
<title>James Bond Quiz - SCORE PAGE</title>
</head>
<body>
<main>
<div class="wrapper">
<div class="outer-container">
<div>
<!-- Image and message with a game result -->
<img src="assets/images/bond_small.webp" class="endgame-image" width="350" height="449" alt="James Bond">
<div id="endgame">
<h1>Thanks for playing</h1>
<h2 id="result">SCORE PLACEHOLDER</h2>
<!-- Button to go back to the main page and re-play -->
<button class="button button-start" id="playAgain">Play again</button>
</div>
</div>
</div>
</div>
</main>
<footer>
<!-- Social media links -->
<a href="https://github.com/alexkisielewicz/quiz-game" target="_blank" title="Visit my GitHub profile and project repository"><i class="fa-brands fa-github social-icons"></i></a>
<a href="https://www.linkedin.com/in/alekkisielewicz/" target="_blank" title="Visit my linkedIn profile"><i class="fa-brands fa-linkedin social-icons"></i></a>
</footer>
</body>
</html>