-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (24 loc) · 1.03 KB
/
index.html
File metadata and controls
27 lines (24 loc) · 1.03 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz app</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="containerB">
<h3 class="question"> What is your name?</h3>
<ul class="list">
<li class="ans"> <input type="radio" class="Answer" id="a" name="ans"><label for="ans" class="A"> Answer</label></li>
<li class="ans"> <input type="radio" class="Answer" id="b" name="ans"><label for="ans" class="B"> Answer</label></li>
<li class="ans"> <input type="radio" class="Answer" id="c" name="ans"><label for="ans" class="C"> Answer</label></li>
<li class="ans"> <input type="radio" class="Answer" id="d" name="ans"><label for="ans" class="D"> Answer</label></li>
</ul>
</div>
<button class="btn-ans" onclick="submit()">Submit</button>
</div>
</body>
<script src="main.js"></script>
</html>