-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 697 Bytes
/
index.html
File metadata and controls
30 lines (24 loc) · 697 Bytes
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>
<head>
<meta charset="UTF-8">
<title>Simple Quiz</title>
<style>
body { font-family: Arial; padding: 20px; }
.answer { display: block; margin: 8px 0; cursor: pointer; }
.selected { background: #4caf50; color: white; }
#scoreBox { display: none; }
</style>
</head>
<body>
<h1>Quiz</h1>
<h2 id="scoreBox">Score: <span id="score">0</span></h2>
<h3 id="question"></h3>
<div id="answers"></div>
<button id="back">Back</button>
<button id="next">Next</button>
<button id="submit" style="display:none;">Submit</button>
<button id="restart" style="display:none;">Restart</button>
<script src="quiz.js"></script>
</body>
</html>