forked from Odun2012/My-Quiz-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.05 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
<!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>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="quiz-container">
<h1>General Questions</h1>
<p class="performance-note">Your performance in this round determines your final success in the competion.</p>
<div id="question-container">
<p id="question-text"></p>
<div id="options-container"></div>
<p id="timer-text"></p>
</div>
<button id="next-button">Next</button>
<button id="submit-button" style="display: none;">Submit</button>
</div>
<div id="result-container" style="display: none;">
<h2>You Scored: <span id="score"></span></h2>
<h3>Correct Answers:</h3>
<ul id="correct-answers"></ul>
<button id="retake-button">Retake Quiz</button>
<button id="end-button">End Quiz</button>
</div>
<script src="script.js"></script>
</body>
</html>