-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 954 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 954 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
<!DOCTYPE html>
<html>
<head>
<title>Quiz</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="quiz.css">
</head>
<body>
<div id="quizContainer" class="container">
<div class="title">General Chemistry1 Quiz</div>
<div id="question" class="question"></div>
<label class="option"><input type="radio" name="option" value="1"/> <span id="opt1"></span></label>
<label class="option"><input type="radio" name="option" value="2"/> <span id="opt2"></span></label>
<label class="option"><input type="radio" name="option" value="3"/> <span id="opt3"></span></label>
<label class="option"><input type="radio" name="option" value="4"/> <span id="opt4"></span></label>
<button id="nextButton" class="next-btn" onclick="loadNextQuestion();"> Next Question</button>
</div>
<div id="result" class="container result" style="display:none;">
</div>
<script src="question.js"></script>
<script src="quizscript.js"></script>
</body>
</html>