-
Notifications
You must be signed in to change notification settings - Fork 0
/
Landfills-Quiz.html
72 lines (69 loc) · 5.29 KB
/
Landfills-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>Landfills 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='./Landfills.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">Landfills</h1>
<section id="quiz">
<form name="landfill-form">
<div id="question1" class="q-div">
<p class="question">1. What is the purpose of a liner system in a landfill?</p>
<input type="radio" name="a1" value="a"><label>To collect and remove leachate</label><br><br>
<input type="radio" name="a1" value="b"><label>To capture and control methane gas emissions</label><br><br>
<input type="radio" name="a1" value="c"><label>To prevent waste from seeping into the surrounding soil and groundwater</label><br><br>
<input type="radio" name="a1" value="d"><label>To maximize the space available for waste disposal</label><br><br>
</div>
<div id="question2" class="q-div">
<p class="question">2. What is leachate, and how is it managed in a landfill?</p>
<input type="radio" name="a2" value="a"><label>Leachate is a byproduct of methane gas production and is burned off.</label><br><br>
<input type="radio" name="a2" value="b"><label>Leachate is a liquid produced by waste decomposition and is collected and treated before being discharged to a wastewater treatment plant or other approved facility.</label><br><br>
<input type="radio" name="a2" value="c"><label>Leachate is a type of hazardous waste that is removed from the landfill and disposed of at a specialized facility.</label><br><br>
<input type="radio" name="a2" value="d"><label>Leachate is the residual waste that remains in the landfill after all useful materials have been removed.</label><br><br>
</div>
<div id="question3" class="q-div">
<p class="question">3. Why is gas collection necessary in landfills?</p>
<input type="radio" name="a3" value="a"><label>To prevent the release of greenhouse gases into the atmosphere</label><br><br>
<input type="radio" name="a3" value="b"><label>To generate energy from captured methane gas</label><br><br>
<input type="radio" name="a3" value="c"><label>To prevent explosions within the landfill</label><br><br>
<input type="radio" name="a3" value="d"><label>All of the above</label><br><br>
</div>
<div id="question4" class="q-div">
<p class="question">4. What is the main purpose of monitoring and maintenance in landfills?</p>
<input type="radio" name="a4" value="a"><label>To ensure that waste is being properly contained and that there are no environmental or health hazards present</label><br><br>
<input type="radio" name="a4" value="b"><label>To maximize the amount of waste that can be disposed of in the landfill</label><br><br>
<input type="radio" name="a4" value="c"><label>To reduce the cost of landfill operation by minimizing the need for inspections and repairs</label><br><br>
<input type="radio" name="a4" value="d"><label>To increase the amount of methane gas produced by the landfill</label><br><br>
</div>
<div id="question5" class="q-div">
<p class="question">5. What is the current focus in waste management with regards to landfills?</p>
<input type="radio" name="a5" value="a"><label>Increasing the amount of waste that is sent to landfills</label><br><br>
<input type="radio" name="a5" value="b"><label>Eliminating the use of landfills entirely</label><br><br>
<input type="radio" name="a5" value="c"><label>Reducing the amount of waste that is sent to landfills and promoting sustainable waste management practices</label><br><br>
<input type="radio" name="a5" value="d"><label>Using landfills as a source of renewable energy</label><br><br>
</div>
</form>
<div class="result">
<h1 class="result-text"></h1>
<button class="butn" onclick="displayResult(1)">Check Answers!</button>
</div>
</section>
</div>
<script src="quiz.js"></script>
</body>
</html>