Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Signed-off-by: Lokofar <[email protected]>
  • Loading branch information
edwardosama authored Oct 10, 2024
1 parent 2a79732 commit 874dc89
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions index.html
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>


0 comments on commit 874dc89

Please sign in to comment.