-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.48 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
40
41
42
43
<!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>Quizee Test</title>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&family=Merriweather&family=Playfair+Display&display=swap"rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="Project/favicon-32x32.png">
</head>
<body>
<div class="main-div">
<div class="inner-div">
<h2 class="question">Questions comes here</h2>
<ul>
<li>
<input type="radio" name="answer" id="ans1" class="answer" >
<label for="ans1" id="option1" > answer option</label>
</li>
<li>
<input type="radio" name="answer" id="ans2" class="answer" >
<label for="ans2" id="option2" > answer option</label>
</li>
<li>
<input type="radio" name="answer" id="ans3" class="answer" >
<label for="ans3" id="option3" > answer option</label>
</li>
<li>
<input type="radio" name="answer" id="ans4" class="answer" >
<label for="ans4" id="option4" > answer option</label>
</li>
</ul>
<button id="submit" class="sub">Submit</button>
<div id="showScore" class="scoreArea"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>