-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.36 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Quiz App with Tailwind</title>
<link rel="stylesheet" href="styles.css">
<!-- Include Tailwind CSS via CDN -->
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<!-- <style type="text/tailwindcss">
theme {
--color-clifford: #da373d;
} -->
</style>
</head>
<body class="flex items-center justify-center min-h-screen bg-blue-900">
<div class="quiz-container bg-white p-6 rounded-lg shadow-lg w-full max-w-md">
<h1 class="text-2xl font-bold text-center mb-6 bg-blue-500 rounded-2xl">Interactive Quiz</h1>
<div class="text-lg mb-4 text-center">
Score: <span id="score-value" class="font-semibold">0</span>
</div>
<div id="question" class="text-lg font-medium text-center mb-6"></div>
<div id="options" class="space-y-3 grid grid-rows-4"></div>
<button id="next-btn" onclick="nextQuestion()" class="mt-6 w-full bg-green-500 text-white py-2 rounded-lg hover:bg-green-600 transition-colors" disabled>
Next
</button>
<div id="result" class="mt-6 text-lg font-bold text-center hidden"></div>
</div>
<script src="Hey.js"></script>
</body>
</html>