-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.37 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
34
35
36
37
38
39
40
<!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://code.highcharts.com/highcharts.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>AI Quiz App</h1>
<div id="topic-input">
<label for="topic">Enter the topic for the quiz:</label>
<input type="text" id="topic" required>
<br>
<label for="numQuestions">Enter the number of questions (1-10):</label>
<input type="number" id="numQuestions" min="1" max="10" required>
<br>
<button id="start">Start Quiz</button>
</div>
<div id="quiz" class="hidden">
<h2 id="question"></h2>
<div id="options"></div>
<p id="result"></p>
<button id="next" style="display: none;">Next Question</button>
<button id="submit" style="display: none;">Submit Quiz</button>
<button id="restart" style="display: none;">Restart Quiz</button>
</div>
<div id="lifelineButtons">
<button id="lifeline" style="display: none;">50:50 Lifeline</button>
<button id="audiencePoll" style="display: none;">Audience Poll</button>
</div>
<div id="audiencePollResults" class="hidden">
<div id="pollChart"></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>