-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscore.html
93 lines (90 loc) · 4.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
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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href=https://breezeui.netlify.app/styles/breezeUI.css>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="main.css">
<title>Quiz App | Score</title>
</head>
<body>
<header class="flex-space-btwn flex-center header-container">
<div class="flex-center">
<h3 class="text-highlight">HopScotch</h3>
</div>
<button class="menu-btn"><i class="fa fa-bars"></i></button>
<nav class="nav-pill-container flex-layout flex-center flex-space-btwn">
<a class="mg-rl-1 txt-md a-link nav-link" href="index.html">Home</a>
<a class="mg-rl-1 txt-md a-link nav-link" href="rules.html">Rules</a>
<a class="mg-rl-1 txt-md a-link nav-link" href="categories.html">Categories</a>
<button id="toggle-btn" class="mg-rl-1 btn-img" value="dark-mode"><img src="assets/images/dark_mode.svg"></a>
</nav>
</header>
<div class="flex-column flex-center score-container">
<img class="score-img" src="assets/images/congratulations.gif" alt="congratulations animation">
<h3>Congratulations !</h3>
<span>You have scored : 1/3</span>
<a class="link-btn" href="#answers">See Answers</a>
</div>
<div id="answers" class="flex-column flex-center mg-5">
<div class="question-container">
<h4>Question : 1/3</h4>
<span>What is the answer to this question ?</span>
<div class="flex-column">
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label correct-answer" for="rate-5">Option 1 answer</label>
</div>
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label" for="rate-5">Option 2 answer</label>
</div>
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label wrong-answer" for="rate-5">Option 3 answer</label>
</div>
</div>
</div>
<div class="question-container">
<h4>Question : 2/3</h4>
<span>What is the answer to this question ?</span>
<div class="flex-column">
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label" for="rate-5">Option 1 answer</label>
</div>
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label correct-answer" for="rate-5">Option 2 answer</label>
</div>
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label" for="rate-5">Option 3 answer</label>
</div>
</div>
</div>
<div class="question-container">
<h4>Question : 3/3</h4>
<span>What is the answer to this question ?</span>
<div class="flex-column">
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label wrong-answer" for="rate-5">Option 1 answer</label>
</div>
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label" for="rate-5">Option 2 answer</label>
</div>
<div class="option-container">
<input type="radio" class="option-radio">
<label class="option-label correct-answer" for="rate-5">Option 3 answer</label>
</div>
</div>
</div>
<a class="link-btn" href="categories.html">Take a new quiz</a>
</div>
<script src="app.js"></script>
</body>
</html>