-
Notifications
You must be signed in to change notification settings - Fork 0
/
E-Waste-Quiz.html
72 lines (69 loc) · 4.78 KB
/
E-Waste-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>E-Waste 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='./E-Waste.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">E-Waste</h1>
<section id="quiz">
<form name="ewaste-form">
<div id="question1" class="q-div">
<p class="question">1. Which cannot be considered as an e-waste?</p>
<input type="radio" name="a1" value="a"><label>Metals</label><br><br>
<input type="radio" name="a1" value="b"><label>CRT’s</label><br><br>
<input type="radio" name="a1" value="c"><label>Circuit boards</label><br><br>
<input type="radio" name="a1" value="d"><label>Printed papers</label><br><br>
</div>
<div id="question2" class="q-div">
<p class="question">2. Which toxic substance make the e-waste hazardous?</p>
<input type="radio" name="a2" value="a"><label>Sodium</label><br><br>
<input type="radio" name="a2" value="b"><label>Lead</label><br><br>
<input type="radio" name="a2" value="c"><label>Silver</label><br><br>
<input type="radio" name="a2" value="d"><label>Gold</label><br><br>
</div>
<div id="question3" class="q-div">
<p class="question">3. Which is the correct chronology of steps to recycle e-waste?</p>
<input type="radio" name="a3" value="a"><label>Collecting and transporting, shredding and sorting, dust extraction, magnetic separation, water separation, purification of waste stream and preparing recycled material for sale.</label><br><br>
<input type="radio" name="a3" value="b"><label>Collecting and transporting, dust extraction, magnetic separation, water separation, purification of waste stream and preparing recycled material for sale, shredding and sorting.</label><br><br>
<input type="radio" name="a3" value="c"><label>Collecting and transporting, shredding and sorting, magnetic separation, dust extraction, water separation, purification of waste stream and preparing recycled material for sale.</label><br><br>
<input type="radio" name="a3" value="d"><label>Collecting and transporting, shredding and sorting, magnetic separation, dust extraction, purification of waste stream and preparing recycled material for sale, water separation.</label><br><br>
</div>
<div id="question4" class="q-div">
<p class="question">4. For 1 ton production of laptops, how many tonnes of carbon-dioxide is emitted?</p>
<input type="radio" name="a4" value="a"><label>50 tonnes</label><br><br>
<input type="radio" name="a4" value="b"><label>20 tonnes</label><br><br>
<input type="radio" name="a4" value="c"><label>10 tonnes</label><br><br>
<input type="radio" name="a4" value="d"><label>15 tonnes</label><br><br>
</div>
<div id="question5" class="q-div">
<p class="question">5. Who is not affected by e-waste?</p>
<input type="radio" name="a5" value="a"><label>Residents living near recycling sites</label><br><br>
<input type="radio" name="a5" value="b"><label>E-waste recycling workers</label><br><br>
<input type="radio" name="a5" value="c"><label>Electronic company owners</label><br><br>
<input type="radio" name="a5" value="d"><label>Children</label><br><br>
</div>
</form>
<div class="result">
<h1 class="result-text"></h1>
<button class="butn" onclick="displayResult(4)">Check Answers!</button>
</div>
</section>
</div>
<script src="quiz.js"></script>
</body>
</html>