-
Notifications
You must be signed in to change notification settings - Fork 0
/
waste-segregation-Quiz.html
72 lines (69 loc) · 4.75 KB
/
waste-segregation-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>Waste Segregation 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='./waste-segregation.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">Waste Segregation</h1>
<section id="quiz">
<form name="segregation-form">
<div id="question1" class="q-div">
<p class="question">1. What is waste segregation?</p>
<input type="radio" name="a1" value="a"><label>The process of separating different types of waste materials into distinct categories.</label><br><br>
<input type="radio" name="a1" value="b"><label>The process of mixing different types of waste materials together.</label><br><br>
<input type="radio" name="a1" value="c"><label>The process of reducing the amount of waste sent to landfills.</label><br><br>
<input type="radio" name="a1" value="d"><label>The process of burning waste materials at high temperatures.</label><br><br>
</div>
<div id="question2" class="q-div">
<p class="question">2. What is source separation?</p>
<input type="radio" name="a2" value="a"><label>The process of separating different types of waste materials using machines.</label><br><br>
<input type="radio" name="a2" value="b"><label>The process of manually separating different types of waste materials by hand.</label><br><br>
<input type="radio" name="a2" value="c"><label>The process of separating different types of waste materials at the point of origin.</label><br><br>
<input type="radio" name="a2" value="d"><label>The process of decomposing organic waste materials into compost.</label><br><br>
</div>
<div id="question3" class="q-div">
<p class="question">3. Which method is used to sort waste materials based on their physical properties using machines?</p>
<input type="radio" name="a3" value="a"><label>Composting</label><br><br>
<input type="radio" name="a3" value="b"><label>Incineration</label><br><br>
<input type="radio" name="a3" value="c"><label>Mechanical sorting</label><br><br>
<input type="radio" name="a3" value="d"><label>Manual sorting</label><br><br>
</div>
<div id="question4" class="q-div">
<p class="question">4. What are the different types of waste materials that require different methods of segregation?</p>
<input type="radio" name="a4" value="a"><label>Recyclable materials</label><br><br>
<input type="radio" name="a4" value="b"><label>Organic waste</label><br><br>
<input type="radio" name="a4" value="c"><label>Hazardous waste</label><br><br>
<input type="radio" name="a4" value="d"><label>All of the above</label><br><br>
</div>
<div id="question5" class="q-div">
<p class="question">5. What is the process of decomposing organic waste materials into a nutrient-rich soil amendment known as compost?</p>
<input type="radio" name="a5" value="a"><label>Incineration</label><br><br>
<input type="radio" name="a5" value="b"><label>Mechanical sorting</label><br><br>
<input type="radio" name="a5" value="c"><label>Composting</label><br><br>
<input type="radio" name="a5" value="d"><label>Manual sorting</label><br><br>
</div>
</form>
<div class="result">
<h1 class="result-text"></h1>
<button class="butn" onclick="displayResult(0)">Check Answers!</button>
</div>
</section>
</div>
<script src="quiz.js"></script>
</body>
</html>