-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lokofar <[email protected]>
- Loading branch information
1 parent
2a79732
commit 874dc89
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!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 you 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> | ||
|
||
|