-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.41 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
<!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 using js</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1 class="heading">Quiz</h1>
<div class="main-dev">
<div class="inner-section">
<h2 class="question">Question came here</h2>
<ul>
<li>
<input type="radio" name="answer" id="ans-1" class="answer"/>
<label for="name" id="option-1">Option 1 </label>
</li>
<li>
<input type="radio" name="answer" id="ans-2" class="answer"/>
<label for="name" id="option-2">Option 2 </label>
</li>
<li>
<input type="radio" name="answer" id="ans-3" class="answer"/>
<label for="name" id="option-3">Option 3 </label>
</li>
<li>
<input type="radio" name="answer" id="ans-4"class="answer" />
<label for="name" id="option-4">Option 4 </label>
</li>
</ul>
<button id="submit">Submit</button>
<div id="showScore" class="scoreArea"></div>
</div>
</div>
</div>
<footer class="footer">Code by :- Rishika Vishnoi 😊 ⭐</footer>
</body>
<script src="script.js"></script>
</html>