-
Notifications
You must be signed in to change notification settings - Fork 0
/
Biomedical-Quiz.html
76 lines (71 loc) · 4.91 KB
/
Biomedical-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
73
74
75
76
<!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>biomedical 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='./Biomedical.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">Bio medical Waste </h1>
<section id="quiz">
<form name="biomedical-form">
<div id="question1" class="q-div">
<p class="question">1. What is biomedical waste?</p>
<input type="radio" name="a1" value="a"><label>Waste generated during the diagnosis, treatment, or immunization of human beings or animals</label><br><br>
<input type="radio" name="a1" value="b"><label>Waste generated during household activities</label><br><br>
<input type="radio" name="a1" value="c"><label>Waste generated during construction activities</label><br><br>
<input type="radio" name="a1" value="d"><label>Waste generated during agricultural activities</label><br><br>
</div>
<div id="question2" class="q-div">
<p class="question">2. Why is the management of biomedical waste important?</p>
<input type="radio" name="a2" value="a"><label>To increase the volume of waste for disposal</label><br><br>
<input type="radio" name="a2" value="b"><label>To ensure the safety and well-being of healthcare workers, patients, and the general public</label><br><br>
<input type="radio" name="a2" value="c"><label>To spread diseases</label><br><br>
<input type="radio" name="a2" value="d"><label>To harm the environment</label><br><br>
</div>
<div id="question3" class="q-div">
<p class="question">3. What is the WHO's guideline for the management of biomedical waste?</p>
<input type="radio" name="a3" value="a"><label>Mixing infectious and non-infectious waste</label><br><br>
<input type="radio" name="a3" value="b"><label>Incineration of waste</label><br><br>
<input type="radio" name="a3" value="c"><label>Segregation, packaging, labeling, and treatment of waste</label><br><br>
<input type="radio" name="a3" value="d"><label>Disposal of waste in the nearest river</label><br><br>
</div>
<div id="question4" class="q-div">
<p class="question">4. What is the purpose of treatment of biomedical waste?</p>
<input type="radio" name="a4" value="a"><label>To harm the environment</label><br><br>
<input type="radio" name="a4" value="b"><label>To increase the volume of waste for disposal</label><br><br>
<input type="radio" name="a4" value="c"><label>To spread diseases</label><br><br>
<input type="radio" name="a4" value="d"><label>To destroy the pathogens present in the wastes</label><br><br>
</div>
<div id="question5" class="q-div">
<p class="question">5. What can help reduce the risk of exposure to infectious materials and improve waste management practices?</p>
<input type="radio" name="a5" value="a"><label>Awareness and education programs for healthcare workers and the general public</label><br><br>
<input type="radio" name="a5" value="b"><label>Spreading rumors about the dangers of biomedical waste</label><br><br>
<input type="radio" name="a5" value="c"><label>Ignoring guidelines and regulations for the handling, storage, and disposal of biomedical waste</label><br><br>
<input type="radio" name="a5" value="d"><label>Mixing infectious and non-infectious waste</label><br><br>
</div>
</form>
<div class="result">
<h1 class="result-text"></h1>
<button class="butn" onclick="displayResult(7)">Check Answers!</button>
</div>
</section>
</div>
<script src="quiz.js"></script>
</body>
</html>