-
Notifications
You must be signed in to change notification settings - Fork 0
/
Disposal-Quiz.html
72 lines (69 loc) · 4.41 KB
/
Disposal-Quiz.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
<!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>Disposal Quiz</title>
<link rel="stylesheet" href="./css/content-styles.css">
<link rel="stylesheet" href="./css/Quiz.css">
<!-- font links -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&family=Roboto+Mono:wght@500&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<section id="title">
<h1 class="title-heading">.EduWaste</h1>
<button class="butn title-butn" onclick="location.href='./Disposal.html'">Back to Theory</button>
<button class="butn title-butn" onclick="location.href='./landing.html'" style="margin-left: 20px;">Back to Topics</button>
</section>
<h1 class="main-heading">Disposal of solid Waste</h1>
<section id="quiz">
<form name="dsiposal-form">
<div id="question1" class="q-div">
<p class="question">1. Which economy follows take-make-dispose?</p>
<input type="radio" name="a1" value="a"><label>Circular economy for solid waste</label><br><br>
<input type="radio" name="a1" value="b"><label>Linear economy for gaseous waste</label><br><br>
<input type="radio" name="a1" value="c"><label>Linear economy for solid waste</label><br><br>
<input type="radio" name="a1" value="d"><label>Linear economy for liquid was</label><br><br>
</div>
<div id="question2" class="q-div">
<p class="question">2. Which is the benefit of linear economy?</p>
<input type="radio" name="a2" value="a"><label>Supports a nation’s economic growth and environmental sustainability</label><br><br>
<input type="radio" name="a2" value="b"><label>Releases the least amount of carbon footprints into the environment</label><br><br>
<input type="radio" name="a2" value="c"><label>Lessens the use of non-renewable or natural resources</label><br><br>
<input type="radio" name="a2" value="d"><label>Focuses on the objective of Zero Environmental Wastage, provides a wide scope of opportunities for compani</label><br><br>
</div>
<div id="question3" class="q-div">
<p class="question">3. Which disposal method converts biodegradable waste into compost?</p>
<input type="radio" name="a3" value="a"><label>Fermentation</label><br><br>
<input type="radio" name="a3" value="b"><label>Composting</label><br><br>
<input type="radio" name="a3" value="c"><label>Incineration</label><br><br>
<input type="radio" name="a3" value="d"><label>Sea dumping</label><br><br>
</div>
<div id="question4" class="q-div">
<p class="question">4. Sea dumping can be carried out in:</p>
<input type="radio" name="a4" value="a"><label>Hilly regions</label><br><br>
<input type="radio" name="a4" value="b"><label>Plains</label><br><br>
<input type="radio" name="a4" value="c"><label>Coastal cities</label><br><br>
<input type="radio" name="a4" value="d"><label>Forests</label><br><br>
</div>
<div id="question5" class="q-div">
<p class="question">5. How deep is a trench excavated for sanitary landfill?</p>
<input type="radio" name="a5" value="a"><label>3 to 5 m</label><br><br>
<input type="radio" name="a5" value="b"><label>1 to 3 m</label><br><br>
<input type="radio" name="a5" value="c"><label>10 to 12 m</label><br><br>
<input type="radio" name="a5" value="d"><label>7 to 9 m</label><br><br>
</div>
</form>
<div class="result">
<h1 class="result-text"></h1>
<button class="butn" onclick="displayResult(2)">Check Answers!</button>
</div>
</section>
</div>
<script src="quiz.js"></script>
</body>
</html>