-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquizhtml2.html
39 lines (37 loc) · 1.12 KB
/
quizhtml2.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
35
36
37
38
39
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./icon.png">
<meta charset = "utf-8">
<title>JQCode.net</title>
<script src="./jquery-3.6.0.min.js"></script>
<link id="def" rel="stylesheet" href="default.css">
<link id="stl" rel="stylesheet" href="styles.css">
<script src="./script.js"></script>
</head>
<body onload="setProgress(1/4*100)">
<section>
<div id="progressBarUnder">
<div id="progressBar">0%</div>
</div><br>
<div>
<p>Question 1</p>
<form>
<input type="radio" id="option1">
<label for="option1">Answer 1</label><br>
<input type="radio" id="option2">
<label for="option2">Answer 2</label><br>
<input type="radio" id="option3">
<label for="option3">Answer 3</label><br>
<input type="radio" id="option4">
<label for="option4">Answer 4</label><br>
<p></p>
<input type="button" onclick="checkAnswer('option1', 2/4);" value="Check Answer">
</form>
<br><a id="next" href="./quizhtml3.html">Next Question</a><br>
<p></p>
</div>
</section>
</body>
</html>