-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
90 lines (89 loc) · 3.84 KB
/
game.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>Game</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
</head>
<body>
<div id="one">
<img id="microscope" src="images/microscope.png">
<img id="gene" src="images/gene.gif">
</div>
<div id="two">
<img id="goat" src="images/goat.gif">
<img id="npc" src="images/girl.gif">
</div>
<div id="three">
<img id="soil" src="images/soil.png">
<img id="farmer" src="images/farmer.gif">
</div>
<div id="four">
<h1 class="main-title">Advantages and Disadvantages of GMF</h1>
<div class="gmf-container">
<div class="info">
<h2>Advantages</h2>
<ul>
<li>Overcome worldwide food shortage by producing high quality transgenic crops and livestock</li>
<li>Reduce cost of food production</li>
<li>Increase nutritional value of crops</li>
<li>Reduce problems of crops related to pests</li>
<li>Reduce usage of pesticides</li>
<li>Increase in production reduces price of food, thus increase food availability</li>
</ul>
</div>
<div id="gmf-d" class="info">
<h2>Disadvantages</h2>
<ul>
<li>Endangered natural species</li>
<li>There is a slight possibility that the foreign gene in GMF may be transferred to humans, for example, antibiotic-resistance gene</li>
<li>May have adverse effects on human health and genetic material</li>
</ul>
</div>
</div>
</div>
<div id="five">
<div class="row">
<img id="guide" src="images/bobot.gif">
<img id="insulin" src="images/gene.png">
</div>
<h2 id="guide-text"></h2>
</div>
<div id="six">
<img id="biotechnology" src="images/biotechnology.png">
</div>
<div id="seven">
<img id="blood" src="images/blood.png">
<img id="chair" src="images/chair.png">
<img id="police" src="images/ken.gif">
</div>
<div id="eight">
<img class="oil" src="images/oil.png">
<img class="oil" src="images/oil.png">
<img id="ship" src="images/ship.gif">
</div>
<div id="nine">
<h1 class="main-title">Importance of Biotechnology in Life</h1>
<div class="info">
<ul>
<li>The field of biotechnology has grown rapidly in Malaysia.</li>
<li>This field makes a contribution in human life especially in developing countries and developed countries.</li>
<li>Biotechnology is often associated with agriculture, industry, nutrition, medicine and the like.</li>
<li>Rapid developments in the field of biology and technology have been able to replace the old methods used by ancient societies to more sophisticated methods, in addition to being able to diversify products that bring benefits to humans.</li>
<li>Biotechnology not only contributes to the increase in nutritional, agricultural and medical yields but also helps to develop a country's economy, especially in the industrial sector.</li>
</ul>
</div>
</div>
<div id="ten">
<img id="agriculture" class="contributions" src="images/agriculture.png">
<img id="medicine" class="contributions" src="images/medicine.png">
<img id="forensic" class="contributions" src="images/forensic.png">
<img id="environment" class="contributions" src="images/environment.png">
</div>
<div id="controls">
<img id="note" src="images/sign.png">
<button id="next">Next</button>
</div>
<script src="script.js"></script>
</body>
</html>