-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.19 KB
/
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
30
<html>
<head>
<title>Quiz Module</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body>
<h1 class="quiz-heading">Quiz</h1>
<div class="app-body">
<h1 class="answer-key">Answer Key</h1>
<div class="question-card">
<h2 id='question'>Question</h2>
<form>
<input type="radio" id="op1" name="op" value="0">
<label for="op1">op1</label><br>
<input type="radio" id="op2" name="op" value="1">
<label for="op2">op2</label><br>
<input type="radio" id="op3" name="op" value="2">
<label for="op3">op3</label><br>
<input type="radio" id="op4" name="op" value="3">
<label for="op4">op4</label><br>
<div id = "res" class="idle">Empty</div><br>
<input type="submit" name="submit" value = 'Submit' class = "submit"/>
</form>
</div>
<button>Restart</button>
</div>
<script src="./script.js"></script>
</body>
</html>