-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
100 lines (89 loc) · 4.7 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<title>Quiz</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h2> </h2>
<!--Upar ka Section-->
<div class="intro py-3 bg-white text-center" >
<div class="container">
<h2 class="text-primary display-3 my-4">Soman's Quiz
</h2>
</div>
</div>
<!--result section-->
<div class="result py-4 d-none bg-light text-center">
<div class="container lead">
<p> You are <span class="text-primary display-4 p-3"> 0% </span> correct!</p>
</div>
</div>
<!--Quiz Section-->
<div class="quiz py bg-primary">
<div class="container" style="padding: 10px">
<h2 class="my-5 text-white" style="padding: 5px">
On with the Questions
</h2>
<form action="" class="quiz-form text-light">
<div class="my-5">
<p class="lead font-weight-normal">1. Which option has Tom and Jerry?
</p>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q1" value="A" >
<label class="form-check-label"><img src="i.jpg" alt="Girl in a jacket" width="300px" height="250px"></label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q1" value="B" >
<label class="form-check-label"><img src="j.jpg" alt="Girl in a jacket" width="300px" height="250px"></label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">2. Who is the friend of Harry Potter?
</p>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q2" value="A" >
<label class="form-check-label"><img src="k.jfif" alt="Girl in a jacket" width="300px" height="250px"></label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q2" value="B" >
<label class="form-check-label"><img src="l.jfif" alt="Girl in a jacket" width="300px" height="250px"></label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">3. Spot Pizza !
</p>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q3" value="A" >
<label class="form-check-label"><img src="n.jfif" alt="Girl in a jacket" width="300px" height="250px"></label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q3" value="B" >
<label class="form-check-label"><img src="m.jpg" alt="Girl in a jacket" width="300px" height="250px"></label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">4. Who has made this page?
</p>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q4" value="A" >
<label class="form-check-label">Mark Zuckerberg</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q4" value="B" >
<label class="form-check-label">Soman Yadav</label>
</div>
</div>
<div class="text-center">
<input type="submit" class="btn btn-light">
</div>
</form>
</div>
</div>
<script src="app.js"></script>
</body>
</html>