-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab4webdf.html
433 lines (336 loc) · 14.5 KB
/
lab4webdf.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
<html>
<!doctype html>
<head>
<title>Mission Green-2022</title>
<style>
p.first {
background-image: url("https://image.freepik.com/free-photo/close-up-nature-view-green-leaf-blurred-greenery-background-sunlight-with-bokeh-copy-space-using-as-background-natural-plants-landscape_105035-801.jpg");
background-attachment: fixed;
}
h1 {
text-align: center;
color: white;
font-family: "Lucida Handwriting", cursive;
font-size: 60px;
text-shadow: 2px 2px 5px black;
}
h2 {
text-align: center;
color: orange;
font-family: "Verdana", Sans-serif;
font-size: 20px;
text-shadow: .5px .5px black;
}
h3 {
text-align: left;
color: white;
font-family: "Times New Roman";
font-size: 20px;
background-color: #00789D;
border-style: inset;
text-shadow: .5px .5px black;
padding: 10px;
border-bottom: 5px solid orange;
}
th {
text-align: center;
color: rgb(21, 101, 133);
font-family: "Verdana";
font-size: 20px;
}
td {
text-align: center;
color: rgb(4, 13, 27);
font-family: "Arial";
}
li {
text-align: left;
color: rgb(4, 13, 27);
font-family: "Arial";
}
h4 {
text-align: left;
color: rgb(10, 93, 161);
font-family: "Verdana", Sans-serif;
font-size: 20px;
}
.foot {
color: white;
text-decoration: none;
text-shadow: .5px .5px white;
}
.foot:hover {
text-decoration: underline;
color: red;
}
.abc {
text-decoration: none;
background-color: #00789D;
color: orange;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #00789D;
}
li {
float: left;
}
.null{
text-align: left;
color: white;
font-family: "Times New Roman";
font-size: 20px;
background-color: #00789D;
border-style: inset;
text-shadow: .5px .5px black;
padding: 10px;
margin-bottom: 0px;
}
li a,
.drop {
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover,
.dropdown:hover .drop {
background-color: red;
}
li.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
color: #00789D;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content {
display: block;
}
.zoom {
padding: 5px;
transition: transform .2s;
width: 180px;
height: 180px;
margin: 0 ;
}
.zoom:hover {
-ms-transform: scale(1.5); /* IE 9 */
-webkit-transform: scale(1.5); /* Safari 3-8 */
transform: scale(1.5);
}
.tooltip {
position: center;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
</head>
<body style="background-color:white">
<div>
<ul>
<li><a href="https://indiancc.mygov.in/wp-content/uploads/2020/12/mygov-9999999991250280701.pdf" target="_blank">Home</a>
</li>
<li><a href="https://thewire.in/tag/green-india" target="_blank">News</a></li>
<li class="dropdown">
<a href="#" class="drop">Dropdown</a>
<div class="dropdown-content">
<a href="https://pib.gov.in/PressReleaseIframePage.aspx?PRID=1813175" target="_blank">Targets sets under Green India
Mission</a>
<a
href="https://www.indiascienceandtechnology.gov.in/st-visions/national-mission/national-mission-green-india-gim" target="_blank">National
Mission for Green India</a>
<a href="https://jkforest.gov.in/assets/pdf/gim/GIM_Mission-Document-1.pdf" target="_blank">Ministry of Environment
and Forests</a>
</div>
</li>
</ul>
</div>
<div style="background-color: #00789D">
<h1>HOPE FOR EARTH</h1>
<h2>- "Are we watching them die? Or they are watching us!"</h2>
</div>
<div height="400px">
<marquee direction="left" behavior="scroll" width="100%" height="auto" scrollamount="20"><span><img
src="./img/background.jpg" style="height:400px;width:80%;margin-left:10px;"><img
src="./img/plant.jpg" style="height:400px;width:80%;margin-left:10px;"><img src="./img/green.jpg"
style="height:400px;width:80%;margin-left:10px;"></span></marquee>
</div>
<div>
<table >
<a href="https://www.earthday.org/india/"><img src="img/1.jpeg" alt="abc"></a>
<tr><td class="zoom"><a href="#?"><div class="tooltip"><img src="img/2.jpeg" alt="abc"></a>
<span class="tooltiptext">Save oil, be healthy and reduce pollution.</span>
</div></td>
<td class="zoom"><a href="#?"><div class="tooltip"><img src="img/3.jpeg" alt="abc"></a>
<span class="tooltiptext">Be a responsible newgeneration.</span>
</div></td>
<td class="zoom"><a href="#?"><div class="tooltip"><img src="img/4.jpeg" alt="abc"></a>
<span class="tooltiptext">Your society needs you for its wellbeing.</span>
</div></td>
<td class="zoom"><a href="#?"><div class="tooltip"><img src="img/5.jpeg" alt="abc"></a>
<span class="tooltiptext">Help the earth recover by sustainable developement ideas.</span>
</div></td></tr><br>
<tr><td class="zoom"><a href="#?"><div class="tooltip"><img class="tooltip" src="img/6.jpeg" alt="abc"></a>
<span class="tooltiptext">Save your future, save each drops.</span>
</div></td>
<td class="zoom"><a href="#?"><div class="tooltip"><img class="tooltip" src="img/8.jpeg" alt="abc"></a>
<span class="tooltiptext">Avoid plastics, use biodegradable products.</span>
</div></td>
<td class="zoom"><a href="#?"><div class="tooltip"><img class="tooltip" src="img/10.jpeg" alt="abc"></a>
<span class="tooltiptext">A tree, a life.</span>
</div></td>
<td class="zoom"><a href="#?"><div class="tooltip"><img class="tooltip" src="img/11.jpeg" alt="abc" ></a>
<span class="tooltiptext">Our duty is to protect mother nature's beauty.</span>
</div></td></tr><br>
</table>
<table>
<tr>
<td><img src="https://media.istockphoto.com/photos/green-globe-with-world-map-isolated-on-white-picture-id1032603574?b=1&k=20&m=1032603574&s=170667a&w=0&h=3ldG2U7m_Sy9nBu6khLaI3fnQ2mSRo10rFJRweHSgog="
alt=""></td>
<td>
<p>Planting trees and ensuring that the survival rate is high is one of the responsibilities that
Art of Living takes seriously. It is promising to note that trees planted have achieved a 90%
survival rate. This has been possible due to various methodologies being incorporated including
organic techniques for proper plantation and drip irrigation.
Furthermore, protection from animals by digging deep trenches is another cost effective
technique adopted here. Daily monitoring on a continuous basis has been a critical factor to
detect and avoid any unforeseen mishaps. This process is scheduled for another year, after which
trees will continue to grow naturally.
</p>
</td>
</tr>
</table>
</div>
</div>
</p>
<div>
<ul>
<li class="null">Blogs</li>
<li style="float: right;"><a href="http://www.greenindiaawards.com/pdf/2021/award_form_2021.pdf" target="_blank">Form</a>
</li>
<li style="float: right;"><a href="http://www.greenindiaawards.com/pdf/2021/award_form_2021.pdf" target="_blank">User input</a></li>
<li style="float: right;" class="dropdown">
<a href="#" class="drop">Submit</a>
<div class="dropdown-content">
<a href="http://www.greenindiaawards.com/pdf/2021/award_form_2021.pdf" target="_blank">Submit Form</a>
</div>
</li>
</ul>
</div>
<table>
<tr>
<th>Save the Ocean</th>
<th>Save the Forest</th>
<th>Save the Energy</th>
</tr>
<tr>
<td>
<img src="https://media0.giphy.com/media/XIi3SmwCfnwMXXQSto/giphy_s.gif" alt="save the ocean"
height="400" width="333" />
</td>
<td>
<img src="https://thumbs.dreamstime.com/z/save-forest-vector-concept-green-plants-deer-birds-silhouettes-illustration-print-eco-bag-postcard-poster-leaflet-217400278.jpg"
alt="save the forest" height="400" width="333" />
</td>
<td>
<img src="https://i.pinimg.com/originals/d7/65/b0/d765b018b9f8642240ae1bea3dd6048a.jpg"
alt="save the ocean" height="400" width="333" />
</td>
</tr>
<tr>
<td>
"We are tied to ocean. And when we go back to the sea, whether it is to sail or to watch, we are going
back from whence we come." - John. F. Kenhedy. <a
href="https://www.worldwildlife.org/blogs/sustainability-works/posts/for-the-love-of-forests"> Here,
join with WWF's sustainability work to save oceans and our future.</a>
</td>
<td>
Forests are our mother because they are home to three-quarters of the planet's life on land and provide
clean air and water. Forests are simply the best nature-based solution to address the climate crisis,
and we must do what we can to protect them. <a
href="https://www.worldwildlife.org/blogs/sustainability-works/posts/for-the-love-of-forests"> Here,
join with WWF's sustainability work to save forests and our future.</a>
</td>
<td>
We can buy fuels but not energies. By using energy more wisely, we can reduce our dependence on these
finite resources. So, preserve the basic human need. <a
href="https://i.pinimg.com/originals/d7/65/b0/d765b018b9f8642240ae1bea3dd6048a.jpg"> Here, join with
WWF's sustainability work to save energy and our future.</a>
</td>
</tr>
</table>
<h3>Contribute positively to the environment by purchasing sustainable alternatives.
<a href="https://www.nrdc.org/stories/global-warming-101"
style="color: orange; text-decoration: underline;">Click here to know more.</a>
</h3>
<div style="background-color: #00789D;color:orange;font-size:x-large;">Important Links :</div>
<table style="color:white
; width: 100%; background: #00789D;">
<tr>
<th>
<h4 class="abc" style="text-align: center;">Eco Websites-</h4>
</th>
<th>
<h4 class="abc" style="text-align: center;">Government Websites-</h4>
</th>
</tr>
<tr>
<td><a class="foot" href="https://www.treehugger.com/">Treehugger</a></td>
<td><a class="foot" href="http://www.indiaenvironmentportal.org.in/">Indian Environment Portal</a></td>
</tr>
<tr>
<td><a class="foot" href="https://www.greenpeace.org/india/en/">Greenpeace</a></td>
<td><a class="foot" href="https://www.neeri.res.in/#googtrans(en|en)">CSIR</a></td>
</tr>
<tr>
<td><a class="foot" href="https://www.nationalgeographic.com/environment">National Geographic</a></td>
<td><a class="foot" href="https://parivesh.nic.in/">Parivesh</a></td>
</tr>
<tr>
<td><a class="foot" href="https://grist.org/">Grist</a></td>
<td><a class="foot" href="https://www.india.gov.in/topics/environment-forest">National Portal of India</a>
</td>
</tr>
<tr>
<td><a class="abc" href="#" style="text-align: left; align-items: flex-start;"><br><br> Contact Us :
[email protected]</a></td>
</tr>
</table>
</p>
</body>
</html>