-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
50 lines (47 loc) · 1.77 KB
/
app.html
File metadata and controls
50 lines (47 loc) · 1.77 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
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<main>
<header>
<h2>QUIZ TIME</h2>
<i class="fa-solid fa-volume-high"></i>
<div class="count"><span class="questionCount"></span>/10</div>
</header>
<div class="qn">
<div class="ask">What is your name?</div>
<div class="timer">00:30</div>
</div>
<div class="ans">
<ul disabled>
<!-- <li class="option">Option 1</li>
<li class="option" >Option 2</li>
<li class="option">Option 3</li>
<li class="option">Option 4</li> -->
</ul>
<div class="next">Next ></div>
</div>
<div class="last"> <h6>Made with ❤️ by Devendra Nath Limbu</h6></div>
</main>
</div>
<div class="final">
<div class="result">
<h2>Progress</h2>
<div class="progress">
<div class="mark"><span id="mark">20%</span></div>
</div>
<h3>You Scored: <span>12</span>/10</h3>
<p>Great, almost there. Keep learning...</p>
<button><a href="index.html">Reset</a></button>
</div>
</div>
<script src="app.js"></script>
</body>
</html>