-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (87 loc) · 4.2 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="author" content="Debraj Karmakar">
<meta name="keywords" content="quiz,quiz app,challenge,yes no,option,timer,knowledge,passion,thinking,skills">
<meta name="description" content="Play many free online quiz games. There is a fun quiz about virtually every topic imaginable: Programming, technology, libraries, assets, and more!">
<meta property="og:type" content="webApp" />
<meta property="og:title" content="Quiz App" />
<meta property="og:description" content="Play many free online quiz games. There is a fun quiz about virtually every topic imaginable: Programming, technology, libraries, assets, and more!" />
<meta property="og:image" content="https://img.icons8.com/color/48/000000/questions.png" />
<meta property="og:url" content="https://debrajhyper.github.io/Quiz_App/" />
<meta property="og:site_name" content="Quiz App" />
<meta name="twitter:title" content="Quiz App">
<meta name="twitter:description" content="Play many free online quiz games. There is a fun quiz about virtually every topic imaginable: Programming, technology, libraries, assets, and more!">
<meta name="twitter:image" content="https://img.icons8.com/color/48/000000/questions.png">
<meta name="twitter:site" content="@Debraj33938079">
<meta name="twitter:creator" content="@Debraj33938079">
<link rel="icon" href="https://img.icons8.com/color/48/000000/questions.png" type="image/icon type">
<title>Quiz App</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="start_btn">
<button>Start Quiz</button>
</div>
<div class="info_box">
<div class="info-title"><span>Some 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. Once you select your answer, it can't be undone.</div>
<div class="info">3. You can't select any option once time goes off.</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="restart">Continue</button>
</div>
</div>
<div class="quiz_box">
<header>
<div class="title">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">
<!-- Here I've inserted question from JavaScript -->
</div>
<div class="option_list">
<!-- Here I've inserted options from JavaScript -->
</div>
</section>
<footer>
<div class="total_que">
<!-- Here I've inserted Question Count Number from JavaScript -->
</div>
<button class="next_btn">Next Question</button>
</footer>
</div>
<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">
<!-- Here I've inserted Score Result from JavaScript -->
</div>
<div class="buttons">
<button class="restart">Replay Quiz</button>
<button class="quit">Quit Quiz</button>
</div>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/questions.js"></script>
<script src="assets/js/script.js"></script>
<script src="assets/confetti.js-master/confetti.js"></script>
</body>
</html>