forked from TONYSTRAK25/QUIZ-PROJECT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 793 Bytes
/
Copy pathindex.html
File metadata and controls
26 lines (24 loc) · 793 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
#this is only sample code not for use
#hey i am using this github in sub and
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Quiz App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="quiz-container">
<h1>Interactive Quiz</h1>
<div id="question-container">
<p id="question">Loading...</p>
<div id="answer-buttons" class="btn-container"></div>
</div>
<button id="next-btn" class="hidden">Next</button>
<p id="score-display" class="hidden"></p>
</div>
<script src="questions.js"></script>
<script src="script.js"></script>
</body>
</html>