-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (27 loc) · 994 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MERN Stack Quiz</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>MERN Stack Quiz</h1>
<div id="quiz-section">
<div id="question-container">
<p id="question-text"></p>
<div id="options-container"></div>
</div>
<button id="next-button" class="btn">Next</button>
<button id="submit-button" class="btn" style="display: none;">Submit</button>
<button id="prev-button" class="btn">prev</button>
</div>
<div id="score-container" style="display: none;">
<h2>Your Score: <span id="final-score"></span></h2>
</div>
</div>
<script src="script.js"></script>
</body>
</html>