-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummary.html
32 lines (30 loc) · 1.01 KB
/
summary.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Summary</title>
<style>
body {
background-image: url('aoxwizz/9.jpg');
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body onload="showSummary()">
<div class="container">
<p class="QuizSummary"> Quiz Summary</p>
<p id="summary"></p>
<p id="congratulations" style="color: rgb(237, 222, 115); "></p>
<div class="button-container">
<button id="shareButton" style="display: none;" onclick="shareScore()">Share</button>
<button onclick="location.href='index.html'">Restart Quiz</button>
</div>
</div>
<div class="footer">
Made by <a href="https://www.instagram.com/aoxwizz?igsh=ZG1lOGM5M3d4OWY1&utm_source=qr">@aoxwizz</a>.<br>
Thank you for visiting my website.
</div>
<script src="script.js"></script>
</body>
</html>