-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (96 loc) · 4.42 KB
/
index.html
File metadata and controls
100 lines (96 loc) · 4.42 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
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Pokemon Quiz</title>
</head>
<body>
<!-- Top Section-->
<div class="intro py-3 bg-danger text-center">
<div class="container">
<h2 class="text-light display-3 my-4">Pokemon Quiz</h2>
</div>
</div>
<!-- Score board section-->
<div class="result py-4 d-none bg-info text-center">
<div class="container lead">
<p>You are <span class="text-light display-4 p-3">0%</span>pokemon master</p>
</div>
</div>
<!-- Quiz section-->
<div class="quiz py-4 bg-warning">
<div class="container">
<h2 class="my-5 text-white">On with the questions</h2>
<form class="quiz-form text-light">
<div class="my-5">
<p class="lead font-weight-normal">1. How can you capture a Pokémon?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q1" value="A" checked>
<label class="form-check-label">calling it by name.</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q1" value="B">
<label class="form-check-label">capturing it in a pokéball.</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q1" value="C">
<label class="form-check-label">singing to it.</label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">2. Who is the main character of the pokemon series?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q2" value="A" checked>
<label class="form-check-label">Hary</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q2" value="B">
<label class="form-check-label">Ash</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q2" value="C">
<label class="form-check-label">Gary</label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">3. Among these which is a lengendary pokemon?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q3" value="A" checked>
<label class="form-check-label">Pikachu</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q3" value="B">
<label class="form-check-label">Mewtwo</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q3" value="C">
<label class="form-check-label">Ho-oh!</label>
</div>
</div>
<div class="my-5">
<p class="lead font-weight-normal">4. What is final evolved form of charmendar?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q4" value="A" checked>
<label class="form-check-label">Charmilion</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q4" value="B">
<label class="form-check-label">Charizard</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" name="q4" value="C">
<label class="form-check-label">Raichu</label>
</div>
</div>
<div class="text-center">
<input type="submit" class="btn btn-primary">
</div>
</form>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>