-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
52 lines (43 loc) · 1.34 KB
/
quiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Osama's Quiz</title>
<link rel="stylesheet" href="quiz.css">
</head>
<body>
<!-- Header Section -->
<header class="header">
<h1>Welcome to Osama's Quiz</h1>
<p>Test your programming knowledge and progress through multiple levels!</p>
</header>
<!-- Quiz Container -->
<div class="quiz-container">
<!-- Level Display -->
<div class="level-display">
<h2 id="level">Level: 1</h2>
</div>
<!-- Progress Bar -->
<div class="progress-bar-container">
<div id="progress-bar" class="progress-bar"></div>
</div>
<!-- Timer -->
<div class="timer-container">
<p id="timer">Time left: 30s</p>
</div>
<!-- Question Display -->
<div id="question-container" class="question-container">
<h3 id="question">Click Start to begin the quiz!</h3>
</div>
<!-- Options Display -->
<div id="options" class="options-container">
<!-- Options will be injected here by JavaScript -->
</div>
<!-- Start Button -->
<div class="start-button-container">
<button id="start-btn" class="start-btn">Start Quiz</button>
</div>
<script src="quiz.js"></script>
</body>
</html>