-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.68 KB
/
Copy pathindex.html
File metadata and controls
56 lines (52 loc) · 2.68 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 min-h-screen flex items-center justify-center p-4">
<div class="w-full max-w-md bg-white rounded-lg shadow-lg overflow-hidden">
<!-- Quiz Header -->
<div class="bg-indigo-600 text-white p-6">
<h1 class="text-2xl font-bold">Quiz App</h1>
<div class="flex justify-between items-center mt-2">
<span class="text-indigo-200">Question <span id="current-question">1</span>/<span id="total-questions">0</span></span>
<span class="bg-indigo-800 px-3 py-1 rounded-full text-sm" id="score">Score: 0</span>
</div>
</div>
<!-- Quiz Content -->
<div class="p-6">
<div id="quiz-container">
<!-- Welcome Screen -->
<div id="welcome-screen" class="text-center">
<h2 class="text-xl font-semibold mb-4">Welcome to the Quiz!</h2>
<p class="text-gray-600 mb-6">Test your knowledge with this interactive quiz. Click start when you're ready.</p>
<button id="start-btn" class="bg-indigo-600 text-white px-6 py-2 rounded-lg hover:bg-indigo-700 transition">
Start Quiz
</button>
</div>
<!-- Question Screen (initially hidden) -->
<div id="question-screen" class="hidden">
<h2 id="question-text" class="text-lg font-medium mb-6"></h2>
<div id="options-container" class="space-y-3"></div>
<button id="next-btn" class="mt-6 bg-indigo-600 text-white px-6 py-2 rounded-lg hover:bg-indigo-700 transition hidden">
Next Question
</button>
</div>
<!-- Results Screen (initially hidden) -->
<div id="results-screen" class="hidden text-center">
<h2 class="text-xl font-semibold mb-4">Quiz Completed!</h2>
<p class="text-gray-600 mb-2">Your final score is:</p>
<p id="final-score" class="text-4xl font-bold text-indigo-600 mb-6">0/0</p>
<button id="restart-btn" class="bg-indigo-600 text-white px-6 py-2 rounded-lg hover:bg-indigo-700 transition">
Restart Quiz
</button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>