-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.33 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
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App</title>
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div class="main">
<div id="box">
<h3 id="quesBox">This is question</h3>
<div class="row">
<input class="options" id="option 1" type="radio" value="a" name="option"/>
<label for="option 1"> option 1</label>
</div>
<div class="row">
<input class="options" id="option 2" type="radio" value="b" name="option"/>
<label for="option 2"> option 2</label>
</div>
<div class="row">
<input class="options" id="option 3" type="radio" value="c" name="option"/>
<label for="option 3"> option 3</label>
</div>
<div class="row">
<input class="options" id="option 4" type="radio" value="d" name="option"/>
<label for="option 4"> option 4</label>
</div>
<button class="btn"onclick="submitQuiz()">
Submit
</button>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>