-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresult.html
98 lines (71 loc) · 2.72 KB
/
result.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<html lang="en">
<head>
<!-- Meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Web view -->
<title>Quiz Game - Main</title>
<!-- Css -->
<link rel="stylesheet" href="./result.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300&display=swap" rel="stylesheet">
<!-- Js -->
<script src="./result.js" defer></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
</head>
<body>
<div class="header">
<h3 class="headerName" onclick="window.location = './index.html'">Quiz Game</h3>
<div class="information">
<!-- <h4 class="headerPoint">Done : <span id="point">0</span></h4> -->
<button class="takeBtn">Take Quiz Again</button>
</div>
</div>
<div class="res">
<div class="resHeader">
<h3>Your Quiz Result : </h3>
</div>
<div class="resMain">
<div class="result">
You have :
<br>
<br>
<span id="corAnswerValue">0</span>
correct answer
<br>
<span id="wroAnswerValue">0</span>
wrong answer
</div>
<div class="quiz">
<ul id="quizAns">
<!-- <li class="answer">
<p id="question">Who is the creator of this webstie?</p>
<label id="choice">
<ion-icon name="checkmark-circle"></ion-icon>
KaviaannLikeToSleep
</label>
<label id="corAnswer">
<ion-icon name="arrow-forward-sharp"></ion-icon>
Ludwigyelstein
<ion-icon name="checkmark-sharp"></ion-icon>
</label>
</li> -->
</ul>
</div>
</div>
<div class="resButton">
<button class="takeBtn">Take The Quiz Again</button>
</div>
</div>
<div class="resFooter">
<h3 class="footerHeader">Footer</h3>
<p class="footerMain">
Thank you so much for participating on answering the quiz.
<br>
Hope you are enjoying it 😊
</p>
</div>
</body>
</html>