-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<title>KBC Quizzes Game</title>
</head>
<body>
<div id="main_container">
<div id="quizz_container">
<h1 id="main_heading">KBC GAME!!</h1>
<!-- Status Section -->
<section id="status_section" class="hide">
<section id="prize_status">₹0</section>
<section id="time_status">00:00</section>
</section>
<!-- Captions Before Getting Started -->
<section id="startup_caption" class="responsive-text">
Enjoy the game!
</section>
<!-- Questions and Options Section -->
<section id="questions_and_options" class="hide">
<div id="question" class="responsive-text">Question Here...</div>
<ul id="options_container">
<li id="option_A" class="option responsive-text">Option A</li>
<li id="option_B" class="option responsive-text">Option B</li>
<li id="option_C" class="option responsive-text">Option C</li>
<li id="option_D" class="option responsive-text">Option D</li>
</ul>
<div id="answer_checker" class="responsive-text">Status</div>
</section>
<!-- Start Quiz Button -->
<section id="start_quiz">
<button id="start_button">
Play Quiz!
</button>
</section>
<!-- Quizz Footer Section -->
<section id="footer_section">
<button id="reset_button">Reset</button>
<button id="next_button">Next</button>
</section>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>