-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (116 loc) · 7.88 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<title>Ninja Quiz</title>
</head>
<body>
<!--Top Section-->
<div class="intro py-3 bg-white text-center">
<div class="container">
<h2 class="text-primary display-3 my-4">Ninja Quiz</h2>
</div>
</div>
<!--Result display-->
<div class="result py-4 d-none bg-light text-center">
<div class="container lead">
<p>You're<span class="text-primary display-4 p-3">0%</span>Ninja</p>
</div>
</div>
<!--Question Section-->
<div class="quiz py-4 bg-primary">
<div class="container">
<h2 class="my-5 text-white">Let's go to the Questions...</h2>
<form class="quiz-form text-light">
<div class="my-5">
<p class="lead font-weight-normal">1.How do you give a Ninja directions?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q1" value="A">
<label class="form-check-label">Show them a Map</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q1" value="B">
<label class="form-check-label">Don't worry a Ninja will You </label>
</div>
<div class="my-5">
<p class="lead font-weight-normal">2.when was the last solar flare</p>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q2" value="A">
<label class="form-check-label">October 25, 2018</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q2" value="B">
<label class="form-check-label">July 14, 2017</label>
</div>
<div class="my-5">
<p class="lead font-weight-normal">3.How fast can a solar flares travel</p>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q3" value="A">
<label class="form-check-label">300,000 kilometers per second</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q3" value="B">
<label class="form-check-label">100,00 kilometers per second</label>
</div>
<div class="my-5">
<p class="lead font-weight-normal">4.what makes a solar flare a natural hazard?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q4" value="A">
<label class="form-check-label">it comes from how much power we use</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q4" value="B">
<label class="form-check-label">a major burst from the sun</label>
</div>
<div class="my-5">
<p class="lead font-weight-normal">5.How many times dose a solar flare happen?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q5" value="A">
<label class="form-check-label">12 weeks</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q5" value="B">
<label class="form-check-label">11 years</label>
</div>
<div class="my-5">
<p class="lead font-weight-normal">6.How long can a solar flare take to leave and go back to the sun?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q6" value="A">
<label class="form-check-label">25 hours</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q6" value="B">
<label class="form-check-label">8 minutes and 19 seconds</label>
</div>
<div class="my-5">
<p class="lead font-weight-normal">7.How do solar flares affect life on Earth?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q7" value="A">
<label class="form-check-label">it take out the earth power for 8 hours and its full blackout</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q7" value="B">
<label class="form-check-label">Solar flares produce high energy particles and radiation that are dangerous to living organisms. However, at the surface of the Earth</label>
</div>
<div class="my-5">
<p class="lead font-weight-normal">8.How does the sun burn? Is there oxygen in space? Isn't that needed for fire?</p>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q8" value="A">
<label class="form-check-label">sun will get closer to the earth</label>
</div>
<div class="form-check my-2 text-white-50">
<input type="radio" class="type" name="Q8" value="B">
<label class="form-check-label">The burning in a fire is a chemical reaction, requiring oxygen. If such a chemical reaction were responsible for the heat of the Sun.</label>
</div>
</div>
<div class="text-center">
<input type="submit" class="btn btn-light">
</div>
</form>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>