-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathend_quiz.html
More file actions
49 lines (44 loc) · 1.98 KB
/
Copy pathend_quiz.html
File metadata and controls
49 lines (44 loc) · 1.98 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An interactive quiz for young learners, helping them explore the fascinating world of geography while having fun">
<meta name="keywords" content="javascript quiz geography-quiz">
<title>Quiz End Page</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/responsive.css">
<link rel="icon" type="image/x-icon" href="assets/images/favicon.ico">
<!-- font awesome script -->
<script src="https://kit.fontawesome.com/a4c18554aa.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Start of Header Section-->
<header>
<h1>Quiz Results</h1>
<span id="quiz-player"></span>
</header>
<!-- End Header Section-->
<div class="results-container">
<!-- Quiz Completion Victory Image -->
<div id="result-image"></div>
<!-- Score report -->
<span id="final-score"></span>
<span id="difficulty-level"></span>
<span id="final-message"></span>
<!-- Save score button -->
<button class="retake-quiz-btn" type="submit" onClick="saveHighScore(event)">Save</button>
<!-- Retake Quiz Button-->
<a href="./index.html" class="retake-quiz-btn"><i class="fa-solid fa-rotate-right"></i> Retake Quiz</a>
</div>
<!-- Start Footer Section-->
<footer>
<a href="https://github.com/deeksha-varma" target="_blank" rel="noopener" aria-label="Github page of developer (opens in a new tab).">
<i class="fa-brands fa-github"></i></a>
<a href="https://www.linkedin.com/in/deeksha-varma-74aa18105/" target="_blank" rel="noopener" aria-label="LinkedIn page of developer (opens in a new tab).">
<i class="fa-brands fa-linkedin-in"></i></a>
</footer>
<!-- End Footer Section-->
<script src="assets/js/end.js"></script>
</body>
</html>