-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.31 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="output.css">
<title>Avatar Quiz</title>
</head>
<body class="bg-gray-100 min-h-screen flex items-center justify-center">
<div id="quiz-container" class="bg-white p-8 rounded-lg shadow-md max-w-md w-full">
<h1 id="quiz-title" class="text-3xl font-bold text-center mb-6">Avatar Quiz</h1>
<div id="question-container" class="mb-6">
<p id="question-number" class="text-lg font-semibold mb-2"></p>
<p id="question-text" class="text-xl mb-4"></p>
<div id="answers-container" class="space-y-3 flex flex-col items-start">
<!-- Radio buttons will be dynamically added here -->
</div>
</div>
<div class="flex justify-between">
<button id="prev-button" class="bg-gray-300 hover:bg-gray-400 text-gray-800 font-bold py-2 px-4 rounded">
Previous
</button>
<button id="next-button" class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded">
Next
</button>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>