-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathYala explore.html
More file actions
517 lines (414 loc) · 15.1 KB
/
Copy pathYala explore.html
File metadata and controls
517 lines (414 loc) · 15.1 KB
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
<html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="test.css"></link>
<style>
body {
font-family: "Lato", sans-serif;
padding: 0;
margin: 0;
background: #81c644;
}
.image-container {
background-image: url("images/elephant.jpeg");
background-size: cover;
position: relative;
height: 120px;
}
.text {
background-color: #d1dd93;
color: black;
font-size: 4vw;
font-weight: bold;
margin: 0 auto;
padding: 8px;
width: 50%;
text-align: center;
position: absolute;
margin-top: 50px;
left: 50%;
transform: translate(-50%, -50%);
mix-blend-mode: screen;
}
.dropbtn {
color: #818181;
background:none;
font-size: 25px;
border: none;
transition: 0.3s;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color:white;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown:hover .dropdown-content {display: block;}
.dropdown-content a:hover {background-color: #ddd;}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.dropdown a{
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
#main {
transition: margin-left .5s;
padding: 16px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
.wrap{
width:1300px;
margin-left:49px;
}
.card{
width:300px;
background:#fff;
text-align:center;
font-size:16px;
font-familiy:sans-serif;
float:left;
margin-right:10px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.5);
transition: 0.3s;
}
.card:hover{
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.container{
padding: 2px 16px;
}
.wrapper{
margin-top: 5%;
}
.para{
display: flex;
justify-content: center;
width: auto;
text-align: center;
flex-wrap: wrap;
}
.para .para_member{
background: #f4eecc;
margin: 5px;
margin-bottom: 10px;
width: 1300px;
padding: 20px;
line-height: 20px;
color: #8e8b8b;
position: relative;
color:#889429;
}
.para .para_member p.role{
color: #ccc;
font-size: 12px;
text-transform: uppercase;
}
.para .para_member .para_img{
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 100px;
border-radius: 50%;
background: #fff;
}
.para .para_member .para_img img{
width: 100px;
height: 100px;
padding: 5px;
}
body, html {
height: 100%;
margin: 0;
}
.background {
background-image: url("images/bird flu.jpeg");
}
.background2 {
background-color:#6d6d15;
}
.background3 {
background-image: url("images/wild dog treatment.jpg");
}
.background4 {
background-color:#d2dab2;
}
.hero-image {
height: 24%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
margin-left:50px;
margin-right:50px;
}
.hero-text {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-family: Arial, Helvetica, sans-serif;
}
h4{
background:none;
text-align:center;
padding: 14px 16px;
margin-left:550px;
margin-right:550px;
margin-top:50px;
margin-bottom:50px;
color: white;
}
h5{
background:none;
text-align:center;
padding: 10px 16px;
margin-left:500px;
margin-right:500px;
margin-top:50px;
margin-bottom:50px;
}
h6{
background:none;
text-align:center;
padding: 14px 16px;
text-size:40px;
margin-top:50px;
margin-bottom:50px;
}
h7{
background:none;
color:white;
font-family: Arial;
font-size: 30px;
margin-bottom:20px;
}
div.footerpart{
background-image:url("images/footer background.jpg");
background-size: 100% 100%;
background-attachment: fixed;
background-repeat: no-repeat;
color:black;}
.header{
margin-left: 20px;
width: 92%;
background-color: rgba(0,0,0,.2);
font-size: 16px;
font-family: 'Raleway', sans-serif;
font-weight: 600;
padding: 30px;
text-shadow: 2px 1px 5px black;}
#more {display: none;}
</style>
</head>
<body>
<center>
<div class="image-container">
<div class="text">Yala</div>
</div>
</center>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="Wild life healthcare for sri lanka website.html">Home</a>
<a href="About us.html">About us</a>
<a href="For your knowledge.html">For your knowledge</a>
<div class="dropdown">
<button class="dropbtn"><a>Things to do</a><image src="images/drop.jpg"></image></button>
<div class="dropdown-content">
<a href="How to treat to wild animals.html">How to treat to wild animals</a>
<a href="Protect wild animals health.html">Protect wild animals health</a>
<a href="Advantages of wild animals.html">Advantages of wild animals</a>
</div>
</div>
<a href="Pay for.html">Pay for</a>
</div>
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ open</span>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "300px";
document.getElementById("main").style.marginLeft = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
document.getElementById("main").style.marginLeft= "0";
}
</script>
<br><br>
<div class ="wrap">
<div class ="card">
<img src ="images/yala card 1.jpg" alt ="elephant" style ="width:100%">
<div class ="container">
<p style="font-family: ariel; font-size: 30px;"><b>Mammals</b></p>
<center><a href="Yala mammals.html" style="text-decoration: none; color:black; font-family: Times New Roman; font-size: 40px; border: 1px solid black;"><b>EXPLORE</b></a></center>
</div>
</div>
<div class ="card">
<img src ="images/yala card 2.jpg" alt ="elephant" style ="width:100%">
<div class ="container">
<p style="font-family: ariel; font-size: 30px;"><b>Birds</b></p>
<center><a href="Yala birds.html" style="text-decoration: none; color:black; font-family: Times New Roman; font-size: 40px; border: 1px solid black;"><b>EXPLORE</b></a></center>
</div>
</div>
<div class ="card">
<img src ="images/yala card 3.jpg" alt ="elephant" style ="width:100%">
<div class ="container">
<p style="font-family: ariel; font-size: 30px;"><b>Amphibians</b></p>
<center><a href="Yala amphibians.html" style="text-decoration: none; color:black; font-family: Times New Roman; font-size: 40px; border: 1px solid black;"><b>EXPLORE</b></a></center>
</div>
</div>
<div class ="card">
<img src ="images/yala card 4.jpg" alt ="elephant" style ="width:100%">
<div class ="container">
<p style="font-family: ariel; font-size: 30px;"><b>Reptiles</b></p>
<center><a href="Yala reptiles.html" style="text-decoration: none; color:black; font-family: Times New Roman; font-size: 40px; border: 1px solid black;"><b>EXPLORE</b></a></center>
</div>
</div>
</div>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<div class="wrapper">
<div class="para">
<div class="para_member">
<div class="para_img">
<img src="images/foot sign.png" alt="para_image">
</div>
<br><br>
<p style="text-align:justify; font-family: 'Lato', sans-serif; font-size:15px;">Yala National Park is Sri Lanka’s most visited and second largest national park situated close to Hambantota. Yala was designated as a wildlife sanctuary in 1990 and covers approximately 979 square kilometers of ground area. Yala consists of 215 species of birds out of which 7 species are endemic to Sri Lanka. It harbors 44 species of mammals and has one of the highest densities of leopards in the world. Two important pilgrimage sites namely, Sithulpahuwa and Magul Vihara are situated within the Yala National Park.<span id="dots">...</span><span id="more">Yala National Park is Sri Lanka’s most visited and second largest national park situated close to Hambantota. Yala was designated as a wildlife sanctuary in 1990 and covers approximately 979 square kilometers of ground area. Yala consists of 215 species of birds out of which 7 species are endemic to Sri Lanka. It harbors 44 species of mammals and has one of the highest densities of leopards in the world. Two important pilgrimage sites namely, Sithulpahuwa and Magul Vihara are situated within the Yala National Park....
</span><button onclick="myFunction()" id="myBtn">Read more</button></p>
</div>
</div>
</div>
<script>
function myFunction() {
var dots = document.getElementById("dots");
var moreText = document.getElementById("more");
var btnText = document.getElementById("myBtn");
if (dots.style.display === "none") {
dots.style.display = "inline";
btnText.innerHTML = "Read more";
moreText.style.display = "none";
} else {
dots.style.display = "none";
btnText.innerHTML = "Read less";
moreText.style.display = "inline";
}
}
</script>
<br>
<div class="background4">
<br>
<div class="background">
<br>
<div class="hero-image">
<div class="hero-text">
<h1 style="font-size:23px">For outside people use</h1>
<p style="font-size:21px; font-family: 'Slabo 27px/13px', serif; text-align:center;">If you want to go safaries,do payments to safaries,report wild animal injury,donate money to wild animal health please click any of four links which are provide below in here.</p>
</div>
</div>
<br>
<br>
<div class="header">
<a href="View safari booking.html" style="text-decoration: none; font-family: Georgia, serif; color:#d1fd8c; font-size: 31px; margin-right: 75px;"><b>|Safari book|</b></a>
<a class="two" href="Safari view payment.html" style="text-decoration: none; color:orange; font-family: Georgia, serif; font-size: 31px; margin-right: 75px;"><b>|Safari payment|</b></a>
<a href="Injure report.html" style="text-decoration: none; font-family: Georgia, serif; color:#d1fd8c; font-size: 31px; margin-right: 75px;"><b>|Injure report|</b></a>
<a class="two" href="Money donate.html" style="text-decoration: none; color:orange; font-family: Georgia, serif; font-size: 31px;"><b>|Money donate|</b></a>
</div>
<br>
</div>
<br>
<div class="background3">
<br>
<div class="hero-image">
<div class="hero-text">
<h1 style="font-size:23px">For wildlife people use</h1>
<p style="font-size:21px; font-family: 'Slabo 27px/13px', serif; text-align:center;">For wildlife workers to add wild animals' medicine and medical equipment,request wild animals' medicine and equipment please click any of four links which are provide below in here.</p>
</div>
</div>
<br>
<br>
<div class="header">
<a href="Add medicine login.html" style="text-decoration: none; font-family: Georgia, serif; color:#d1fd8c; font-size: 31px; margin-right: 12px;"><b>|Add medicine|</b></a>
<a class="two" href="Add equipment login.html" style="text-decoration: none; color:orange; font-family: Georgia, serif; font-size: 31px; margin-right: 13px;"><b>|Add equipment|</b></a>
<a href="Medicine request login.html" style="text-decoration: none; font-family: Georgia, serif; color:#d1fd8c; font-size: 31px; margin-right: 13px;"><b>|Request medicine|</b></a>
<a href="Medicine request login.html" style="text-decoration: none; font-family: Georgia, serif; color:#d1fd8c; font-size: 31px;"><b>|Request equipment|</b></a>
</div>
<br>
</div>
<br>
</div>
</div>
<div class="wrapper">
<div class="para">
<div class="para_member">
<div class="para_img">
<img src="images/foot sign.png" alt="para_image">
</div>
<br><br>
<p style="text-align:justify; font-family: 'Lato', sans-serif; font-size:15px;"><center>Yala map</center><br>Yala National Park is Sri Lanka’s most visited and second largest national park situated close to Hambantota. Yala was designated as a wildlife sanctuary in 1990 and covers approximately 979 square kilometers of ground area. Yala consists of 215 species of birds out of which 7 species are endemic to Sri Lanka. It harbors 44 species of mammals and has one of the highest densities of leopards in the world. Two important pilgrimage sites namely, Sithulpahuwa and Magul Vihara are situated within the Yala National Park.<span id="dots">...</span><span id="more">Yala National Park is Sri Lanka’s most visited and second largest national park situated close to Hambantota. Yala was designated as a wildlife sanctuary in 1990 and covers approximately 979 square kilometers of ground area. Yala consists of 215 species of birds out of which 7 species are endemic to Sri Lanka. It harbors 44 species of mammals and has one of the highest densities of leopards in the world. Two important pilgrimage sites namely, Sithulpahuwa and Magul Vihara are situated within the Yala National Park....
</div>
</div>
</div>
<p><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3964.745119546115!2d81.30585831426632!3d6.426783326064355!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3ae683b969aec5c7%3A0x7e3aa2da875d927e!2Yala%20National%20Park%20Sri%20Lanka!5e0!3m2!1sen!2slk!4v1625746901308!5m2!1sen!2slk" width="1000" height="200" style="border:#f4eecc solid 90px; margin-left:90px; margin-right:77px;" allowfullscreen="" loading="lazy"></iframe></p>
<div class="footerpart">
<h3 align="center"><u><img src="images/contact details.jpg" ></img> <h7>Contact Details :</h7> </u></h3>
<center>
<h4><img src="images/main office.jpg" ></img> Main Office : </h4>
<h5><img src="images/email.jpg" ></img> <h7>Mail Us :</h7> <a href="mailto:dheerandarinku@gmail.com">dheerandarinku@gmail.com</a></h5>
<h5><img src="images/call.jpg" ></img> <h7>Call Now :</h7> <a href="callto:94465657623244">+94-465-657-623-244</a></h5>
<h6><h7>Join with Us on:</h7> <img src="images/fb.jpg" ></img> <a href="https://m.facebook.com" style="color:blue;">https://www.facebook.com/YalaPark/</a>
<img src="images/twitter.jpg" ></img> <a href="https://mobile.twitter.com/" style="color:blue;">https://mobile.twitter.com/yalaslanlk</a> <img src="images/whatsapp.jpg" ></img> <a href="www.whatsapp.com" style="color:blue;" >tel:+948567865</a> <img src="images/instergram.jpg" ></img> <a href="https:www.instergram.com/" style="color:blue;" >https://www.instagram.com/Yala_wildlife/</a>
</h6>
</center>
<center><h7>2022 All Rights Reserved.Sri lankan Institute of Technology</h7></center>
</div>
</body>
</html>