-
Notifications
You must be signed in to change notification settings - Fork 1
/
end.html
46 lines (44 loc) · 1.6 KB
/
end.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">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== REMIX ICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="end.css">
<title>Quiz Summary </title>
</head>
<body>
<main class="main" id="main">
<header class="header">
<nav class="nav container">
<div class="nav__logo">
<h1>FE-quiz</h1>
</div>
<div class="toggle__icons container">
<!---->
<i class="ri-sun-line"></i>
<div class="toggle__box">
<div class="toggle__circle"></div>
</div>
<i class="ri-moon-line"></i>
</div>
</nav>
</header>
<section class="section container grid ">
<div class="end__heading">
<h1 class="end__heading-text">Quiz Completed <span>You scored...</span></h1>
</div>
<div class="score__output">
<h3 class="score__heading">Score</h3>
<h1 class="score">7</h1>
<p class="score__remains">out of 10</p>
</div>
<button class="btn end-btn">Play Again</button>
</section>
</main>
<script type="module" src="end.js"></script>
</body>
</html>