-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
34 lines (32 loc) · 1.12 KB
/
quiz.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
<!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="quizstyle.css">
</head>
<body>
<div class="quiz-container">
<div id="question">
<div id="ques-no">Question 1 of 5</div>
<div id="question-text">Question Text</div>
<div class="options">
<button class="option">Option 1</button>
<button class="option">Option 2</button>
<button class="option">Option 3</button>
<button class="option">Option 4</button>
</div>
<div id="message"></div>
<div class="footer">
<span id="timer">Time Left: 10s</span>
<button id="next" class="hidden">Next</button>
</div>
<div id="result" class="hidden">
<h2 >Your Score: <span id="score" class="hidden"></span></h2>
</div>
</div>
</div>
<script src="scriptquiz.js"></script>
</body>
</html>