-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.html
82 lines (70 loc) · 2.4 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
<link rel="stylesheet" href="test.css">
</head>
<body>
<!-- start Quiz button -->
<!-- <div class="start_btn"><button>Start Quiz</button></div> -->
<div class="loader_container">
<div class="loader">
</div>
</div>
<!-- Info Box -->
<div class="info_box">
<div class="info-title"><span>Rules of this Quiz</span></div>
<div class="info-list">
<div class="info">1. You will have only <span>15 seconds</span> per each question.</div>
<div class="info">2. You cannot go to previous question</div>
<div class="info">3. Once time per question is completed automatically shows the next question.</div>
<div class="info">4. You can't exit from the Quiz while you're playing.</div>
<div class="info">5. You'll get points on the basis of your correct answers.</div>
</div>
<div class="buttons">
<button class="quit">Exit Quiz</button>
<button class="start_btn">Start Quiz</button>
</div>
</div>
<!-- Quiz Box -->
<div class="quiz_box">
<header>
<div class="title">Awesome Quiz Application</div>
<div class="timer">
<div class="time_left_txt">Time Left</div>
<div class="timer_sec">15</div>
</div>
<div class="time_line"></div>
</header>
<section>
<div class="que_text">
</div>
<div class="option_list">
</div>
</section>
<footer>
<div class="total_que">
</div>
<button class="next_btn">Next Que</button>
</footer>
</div>
<!-- Result Box -->
<div class="result_box">
<div class="icon">
<i class="fas fa-crown"></i>
</div>
<div class="complete_text">You've completed the Quiz!</div>
<div class="score_text">
</div>
<div class="buttons">
<!-- <button class="restart">Replay Quiz</button> -->
<button class="quit">Quit Quiz</button>
</div>
</div>
<div class="error_box">
<p>Some thing went wrong, please try again after some time! </p>
</div>
<script src="test.js" script-src></script>
</body>
</html>