-
Notifications
You must be signed in to change notification settings - Fork 0
/
DNP.html
1285 lines (1092 loc) · 44.6 KB
/
DNP.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
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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>Desert National Park- Sarvan Patel</title>
<!--
- favicon
-->
<link rel="shortcut icon" href="./assets/images/favicon-logo.png" type="image/svg+xml">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<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=Montserrat:wght@500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap"
rel="stylesheet">
<!-- for table css -->
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td,
th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(odd) {
background-color: #dddddd;
}
</style>
<!-- style for table end -->
<!-- for google ad sense start -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6987276683420538"
crossorigin="anonymous"></script>
<!-- for google ad sense end -->
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="overlay" data-overlay></div>
<div class="header-top">
<div class="container">
<a href="tel:+91 9929262986" class="helpline-box">
<div class="icon-box">
<ion-icon name="call-outline"></ion-icon>
</div>
<div class="wrapper">
<p class="helpline-title">For Further Inquires :</p>
<p class="helpline-number">+91 9929262986</p>
</div>
</a>
<a href="./index.html" class="logo">
<!-- <img src="./assets/images/logo-m-RS.png" alt=" logo"> -->
<p class="logoTop">Thar Desert Photography</p>
</a>
<div class="header-btn-group">
<button class="nav-open-btn" aria-label="Open Menu" data-nav-open-btn>
<ion-icon name="menu-outline"></ion-icon>
</button>
</div>
</div>
</div>
<div class="header-bottom">
<div class="container">
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a href="./index.html#home" class="logo">
<p class="logoTopMenu"> <b><b>Thar Desert Photography</b></b></p>
<!-- <img src="./assets/images/logo-m-rs_black.png" alt="Radhe shyam logo menu "> -->
</a>
<button class="nav-close-btn" aria-label="Close Menu" data-nav-close-btn>
<ion-icon name="close-outline"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li>
<a href="./index.html#home" class="navbar-link" data-nav-link>home</a>
</li>
<li>
<a href="./about.html" class="navbar-link" data-nav-link>about me</a>
</li>
<li class="dropdown">
<a class="navbar-link" >destination</a>
<ul class="dropdown-menu">
<li><a href="./Dhawa.html"> <b> Dhawa-Doli wildlife santuary</b></a></li>
<hr>
<li><a href="./DNP.html"> <b> Desert National Park
</b></a></li>
<hr>
<li><a href="./Destination.html"> <b>Other destination</b></a></li>
<!-- <li><a href="./Destination.html"> <b>Jaisalmer</b></a></li> -->
<li><a href="#"> <b></b></a></li>
</ul>
<li>
<!-- <li class="dropdown">
<a class="navbar-link">Animals</a>
<ul class="dropdown-menu">
<li><a href="./Mamels.html"><b>Mammals</b></a></li>
<hr>
<li><a href="./Reptiles.html"><b>Reptiles</b></a></li>
<hr>
<li><a href="./Birds.html"><b>Birds</b></a></li>
</ul> -->
<li>
<a href="./gallery.html" class="navbar-link" data-nav-link>gallery</a>
</li>
<!-- <li>
<a href="./GIB.html" class="navbar-link" data-nav-link>GIB</a>
</li> -->
<li>
<a href="./Contact.html" class="navbar-link" data-nav-link>contact me</a>
</li>
<li>
<a href="./team.html" class="navbar-link" data-nav-link>Our team</a>
</li>
</ul>
</nav>
<a href="https://forms.gle/KX871rPaAT5FMqoS6" target="_blank">
<button class="btn btn-primary">Book Now</button>
</a>
</div>
</div>
</header>
<main>
<article>
<!-- for whatsapp flot icon start -->
<a class="whapp animated pulse"
href="https://wa.me/919929262986?text=hello%20sarvan%20patel%20I%27m%20interested%20to%20visit%20Dhawa%20Doli%20wildlife%20santuary."
target="_blank">
<div class="whapp-btn">
<img
src="https://uploads-ssl.webflow.com/62b5ca109278e030a060e942/62bf28776d90ec6fa2bec0f4_iconmonstr-whatsapp-1-240.png">
</div>
</a>
<!-- for whatsapp flot icon end -->
<!-- - for whatsapp flot icon end -->
<!--
- #HERO
-->
<section class="hero" id="home" style="background-image: url(./assets/images/DNP/Banner.jpeg);">
<div class="container">
<h2 class="h1 hero-title">DESERT NATIONAL PARK</h2>
<p class="hero-text">
Explore the Magnificence of Desert National Park: A Pristine Oasis Amidst the Thar Desert
</p>
<div class="btn-group">
<a href="./about.html" target="_blank">
<button class="btn btn-primary">About me</button>
</a>
<a href="https://forms.gle/KX871rPaAT5FMqoS6" target="_blank">
<button class="btn btn-secondary">Book now</button>
</a>
</div>
</div>
</section>
<!--
- #GALLERY
-->
<section class="gallery" id="gallery">
<div class="container">
<ul>
<li> <b>1. Park Location and Geography:</b>The Desert National Park is situated in the northwestern region
of India, specifically in the state of Rajasthan. It spans across an area of approximately 3,162 square
kilometers, making it one of the largest national parks in the country. The park's geography is
characterized by vast stretches of arid and semi-arid desert landscapes, including sand dunes, rocky
terrains, and salt flats. Its proximity to the city of Jaisalmer, often referred to as the "Golden City,"
makes it easily accessible to visitors <br>
The park was gazetted in 1980. The park mostly consists of sand dunes (44%) but also has pediments,
pavements, and structural plains. Desert National Park also has fossils from the Jurassic Period.</li>
<br><br>
<li><b>2. Flora of the Desert:</b>The flora of the Desert National Park is a remarkable testament to
nature's resilience in harsh environments. While the arid terrain may appear barren at first glance, it
supports a diverse range of plant species adapted to survive in extreme conditions. Visitors to the park
can witness hardy desert flora such as thorny bushes, drought-resistant shrubs, and salt-tolerant
vegetation. <br>
Habitats that are found in the park include open grassland, thorny bushes, and dunes. 168 plant species
have been recorded in the park. Some species of trees that inhabit the park include Tecomella undulata,
Moringa concanensis, Helitropium rariflorum, and Ammannie desertorum. <br>
</li>
<br><br>
<li><b>3. Fauna in the Arid Terrain:</b>The arid terrain of the Desert National Park is a sanctuary for a
multitude of wildlife species adapted to the challenging desert environment. Among the park's residents
are the elusive desert fox, Indian wolf, and desert cat. It's also a habitat for reptiles like the
spiny-tailed lizard and saw-scaled viper. The park's varied landscapes provide shelter to these creatures
and offer a unique opportunity for wildlife enthusiasts to spot them in their natural habitat.
<br>
The <b>Chinkara </b>or <b>Indian Gazelle (Gazella bennettii) </b>is a common antelope of this region. The
national park's other notable inhabitants are the desert fox, wolf and desert cat. Birdlife in this sandy
habitat is vivid and spectacular. Birds such as sandgrouse, partridges, bee-eaters, larks, and shrikes are
commonly seen. In the winter, the birdlife is augmented by species such as the demoiselle crane and
MacQueen's bustard.
Perhaps the greatest attraction of the park is a bird called the great Indian bustard, a critically
endangered species found only in India. Desert National Park is one of the last sites in which this
species can be found in good numbers. As such, the species draws in thousands of birdwatchers from all
over the world. In addition to the great Indian bustard, the park supports a variety of other birds of
interest to birdwatchers and conservationists alike.
The Thar Desert, often called an 'ocean of sand', covers a large area of western Rajasthan. The fragile
ecosystem of the Thar supports unique and varied wildlife. In this vast ocean of sands lies the famous
Desert National Park, which provides an excellent example of the ecosystem of the Thar Desert and its
diverse wildlife adventure.
The vegetation is sparse, and patches of sewan grass and aak shrub (Calotropis) can be seen. The landscape
includes craggy rocks and compact salt lake bottoms, as well as intermediate areas and both fixed and
shifting dunes. Around 20 percent of the vast expanse is covered with sand dunes.
<br>
<b>Mammals:</b> desert fox, Bengal fox, desert cat, wolf, hedgehog, chinkara. <br>
<b>Reptiles:</b> spiny-tailed lizard, monitor lizard, saw-scaled viper, Russell's viper, common krait.
<br>
<b>Avifauna:</b> sandgrouse, Indian bustard, partridges, bee-eaters, larks and shrikes are year-round
residents, while demoiselle crane and houbara bustard arrive in winter. Raptors include tawny and steppe
eagles, long-legged and honey buzzards, and falcons. <br>
</li>
<br><br>
<li> <b>4. Avian Diversity:</b>The Desert National Park is a birdwatcher's paradise, boasting a rich avian
diversity. It serves as a critical habitat for numerous resident and migratory bird species. One of its
most celebrated residents is the Great Indian Bustard (GIB), a critically endangered bird. Apart from GIB,
visitors can spot birds like the endangered houbara bustard, raptors like eagles and falcons, and a wide
array of waterfowl during the winter months when migratory birds make the park their temporary home.</li>
<br><br>
<li><b>5. Safari Adventures:</b>Safari adventures in the Desert National Park offer visitors a chance to
explore the rugged beauty of the desert. Jeep safaris are a popular way to traverse the sand dunes and
encounter the park's wildlife. These excursions often lead to sightings of desert animals and offer the
thrill of navigating the undulating dunes. Additionally, camel safaris are a quintessential desert
experience, allowing travelers to immerse themselves in the tranquil desert ambiance.</li>
<br><br>
<li><b>6. Desert's Nocturnal Wonders:</b>
As the sun sets over the desert, a whole new world comes alive. The Desert National Park is home to an
intriguing array of nocturnal creatures that thrive in the cooler night temperatures. Visitors can embark
on guided night safaris to witness the fascinating behavior of creatures like desert gerbils, desert cats,
and various species of owls. The serene desert night sky adds to the mystique, making it a memorable
experience</li>
<br><br>
<li><b>7. Stargazing Marvels:</b>The remote location of the park away from urban light pollution provides an
exceptional opportunity for stargazing enthusiasts. On clear desert nights, the celestial canopy reveals
an awe-inspiring display of stars, planets, and constellations. Stargazers can set up their telescopes or
simply lay back on the sand dunes to marvel at the breathtaking night sky.</li>
<br>
<li> <b>8. Immersive Desert Camps:</b>
To complete the desert experience, many tourists opt for immersive desert camps located within and around
the park. These camps offer a taste of traditional Rajasthani hospitality, with accommodations ranging
from luxury tents to rustic desert huts. Visitors can savor local cuisine, enjoy traditional folk music
and dance performances, and take part in activities like camel rides and desert treks.</li>
<br><br>
<li><b>9. Conservation Efforts:</b>The Desert National Park plays a pivotal role in the conservation of the
unique biodiversity of the Thar Desert. Efforts are ongoing to protect endangered species like the Great
Indian Bustard and their fragile habitats. Conservationists work hand in hand with government agencies to
implement strategies for habitat restoration, anti-poaching measures, and community engagement to ensure
the long-term survival of the park's wildlife.</li>
<br><br>
<li><b>10. Visitor Information and Permits:</b>
Before embarking on a journey to the Desert National Park, visitors should be aware of the permits and
regulations in place. Entry permits are typically required, and these can be obtained from designated
offices or online platforms. It's essential to adhere to park guidelines to minimize human impact on the
delicate desert ecosystem. Knowledgeable local guides and tour operators can help plan a safe and
enjoyable visit while respecting the park's natural wonders.</li>
</ul>
<br><br> <br>
<p class="section-subtitle">Gallery of Desert National Park through our lens </p> <br>
<ul class="gallery-list">
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/DNP/DNP-1.jpg" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/DNP/DNP-2.jpg" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/DNP/DNP-3.jpeg" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/DNP/DNP-4.jpg" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/DNP/DNP-5.jpg" alt="Gallery image">
</figure>
</li>
<br><br>
</ul>
<h3 style="text-align: center;"> Desert National Park Jaisalmer Timings</h3>
<table>
<thead>
<tr>
<th>Day</th>
<th>Timing</th>
</tr>
</thead>
<tbody>
<tr>
<td>Monday</td>
<td>10:00 am – 5:00 pm</td>
</tr>
<tr>
<td>Tuesday</td>
<td>10:00 am – 5:00 pm</td>
</tr>
<tr>
<td>Wednesday</td>
<td>10:00 am – 5:00 pm</td>
</tr>
<tr>
<td>Thursday</td>
<td>10:00 am – 5:00 pm</td>
</tr>
<tr>
<td>Friday</td>
<td>10:00 am – 5:00 pm</td>
</tr>
<tr>
<td>Saturday</td>
<td>10:00 am – 5:00 pm</td>
</tr>
<tr>
<td>Sunday</td>
<td>10:00 am – 5:00 pm</td>
</tr>
</tbody>
</table>
<br><br>
<h3 style="text-align: center;"> How to Reach Desert National Parks</h3>
<p>The Desert National Park of Jaisalmer is easily accessible via airplane, train, bus, and road. Below are
the best suitable modes of transportation for you.</p>
<p><strong>By Air:</strong> Jaisalmer is the nearest airport located 40 KMS from the park. For more flight
option The nearest airport to Desert National Park is Jodhpur Airport, 300 km away. Taxis are easily
available from the airport to the national park.</p>
<p><strong>By Train:</strong> The Jaisalmer train station is located just over 30 km away from the park,
making it another convenient option for visitors. The station offers several trains to major cities around
the country, so it's easy to find a train that works for your travel plans. Once you arrive in the city,
it's a short drive to the park.</p>
<p><strong>By Road:</strong> For those looking for a more affordable way to reach Desert National Park
Jaisalmer, there are several bus options. Several bus companies offer daily trips from nearby cities to the
park. These buses are usually cheaper than flying or taking a train, so they're a great option for budget
travelers.</p>
<p>Finally, if you're feeling adventurous, you can always take a road trip to Desert National Park. The park
is located in a very remote region of India, so it's a great place to explore by car. You can take your
vehicle or rent one from the best car rentals in Jaisalmer, and there are plenty of scenic routes that you
can take to get to the park.</p>
<p>It's quite rare to come across a national park in the middle of a desert, but that's exactly what you'll
find in Jaisalmer, Rajasthan, India. The park's stunning and diverse landscape is truly a wonder to behold,
especially considering the harsh conditions of its surroundings. Despite the challenges, this national park
manages to thrive and offer visitors a unique and unforgettable experience.</p>
<br><br>
<h3 style="text-align: center;"> Best Time to Visit Desert National Park</h3>
<ul>
<li><b>Winter Wonderland (November to February):</b>
During this season, daytime temperatures are pleasantly cool, ranging from 15°C to 25°C (59°F to 77°F),
making outdoor activities enjoyable. The crisp winter air enhances wildlife sightings, especially for
birdwatchers.
</li>
<li><b>Spring Awakening (March to April):</b>
Spring marks the transition from winter to summer. The temperatures gradually rise, making it a
comfortable time for exploration. The desert landscape comes alive with vibrant blooms.
</li>
<li><b>Summer Adventures (May to August):</b>
While summer months can be scorching with temperatures above 40°C (104°F) or higher, it presents a unique
opportunity for those seeking an adventure in extreme conditions. You can explore the park's stark
landscapes and still encounter wildlife adapted to the heat.
</li>
<li><b>Monsoon Magic (July to September):</b>
The monsoon season brings a touch of green to the desert, coaxing some greenery from the arid soil. The
park takes on a mystical aura as dark monsoon clouds contrast with golden sands.
</li>
<li><b>Autumn Tranquility (October):</b><br>
As the monsoon recedes, October offers a sense of tranquility. The weather is cooler than summer, and the
landscape still carries hints of greenery from the rains. Ideal for photography and peaceful experiences.
</li>
<br>
<li>Ultimately, the best time to visit Desert National Park depends on your preferences and what you hope to
experience. Whether you seek the vibrancy of winter, the blossoming of spring, the challenge of summer,
the allure of monsoon, or the tranquility of autumn, the park offers a unique encounter with the desert's
ever-changing beauty and wildlife.</li>
</ul>
<br><br><br>
<!-- table -->
<table>
<tr>
<th>Category</th>
<th>Information</th>
</tr>
<tr>
<td>Name</td>
<td>Desert National Park </td>
</tr>
<tr>
<td>Location</td>
<td>Jaisalmer, Rajasthan, India</td>
</tr>
<tr>
<td>Established</td>
<td>1980</td>
</tr>
<tr>
<td>Area</td>
<td>3,162 square kilometers (1,220 square miles)</td>
</tr>
<tr>
<td>Climate</td>
<td>Extreme desert climate with hot summers and cold winters</td>
</tr>
<tr>
<td>Flora</td>
<td>Thorny scrub, succulents, and desert vegetation and more </td>
</tr>
<tr>
<td>Fauna</td>
<td>Great Indian Bustard, Desert Fox, Indian Gazelle, and more</td>
</tr>
<tr>
<td>Avian Species</td>
<td>Over 120 species of birds</td>
</tr>
<tr>
<td>Special Features</td>
<td>Stargazing, unique desert landscapes, and nocturnal wildlife</td>
</tr>
<tr>
<td>Visitor Attractions</td>
<td>Wildlife safaris, birdwatching, and desert camping</td>
</tr>
<tr>
<td>Conservation Efforts</td>
<td>Protection of endangered species and their habitats</td>
</tr>
<tr>
<td>Accessibility</td>
<td>Well-connected by road, nearest airport is Jodhpur Airport</td>
</tr>
<tr>
<td>Wildlife Diversity</td>
<td>Home to various reptiles, insects, and small mammals in addition to its iconic species</td>
</tr>
<tr>
<td>Floral Diversity</td>
<td>Unique desert flora including species like the Rohida and the Kair</td>
</tr>
<tr>
<td>Geological Features</td>
<td>Rich geological formations and sand dunes</td>
</tr>
<tr>
<td>Local Culture</td>
<td>Opportunities to experience local Rajasthani culture and traditions</td>
</tr>
<tr>
<td>Conservation Status</td>
<td>Designated as a protected area to conserve its fragile ecosystem</td>
</tr>
<tr>
<td>Best Time to Visit</td>
<td>October to March for pleasant weather and wildlife sightings</td>
</tr>
<tr>
<td>Entry Fees</td>
<td>Varies for Indian and foreign tourists, additional charges for cameras</td>
</tr>
<tr>
<td>Accommodation</td>
<td>Options for accommodations include hotels and desert camps</td>
</tr>
</table>
<br><br>
<h3 style="text-align: center;">CHECKLIST OF BIRDS</h3>
<table>
<thead>
<tr>
<th>Species</th>
<th>Location</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>Great Indian Bustard</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Indian Courser</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Short-toed Eagle</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>Bonelli's Eagle</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Black-headed Ibis</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Eurasian Spoonbill</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>Great White Pelican</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>Indian Pond Heron</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Cattle Egret</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Grey Heron</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Laughing Dove</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Greater Coucal</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Common Moorhen</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>Common Coot</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Great Indian Bustard</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Macqueen's Bustard</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Painted Stork</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Asian Openbill</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Black Stork</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>Woolly-necked Stork</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Great White Pelican</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>Indian Pond Heron</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Cattle Egret</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Grey Heron</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Laughing Dove</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Greater Coucal</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Common Moorhen</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>Common Coot</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Common Raven</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>House Crow</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Purple Sunbird</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Red Avadavat</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Indian Silverbill</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Scaly-breasted Munia</td>
<td>Desert National Park</td>
<td>Not Seen</td>
</tr>
<tr>
<td>Common Babbler</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Desert Lark</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Rufous-tailed Lark</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Ashy-crowned Sparrow-Lark</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Isabelline Wheatear</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Desert Wheatear</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Variable Wheatear</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Red-rumped Swallow</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>House Sparrow</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Indian Golden Oriole</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Bluethroat</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Indian Peafowl</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
<tr>
<td>Oriental Turtle Dove</td>
<td>Desert National Park</td>
<td>Seen</td>
</tr>
</tbody>
</table>
<br><br>
<h3 style="text-align: center;">CHECKLIST OF MAMMALS</h3>
<table>
<tr>
<th>Name Of The Mammals</th>
<th>Scientific Name</th>
<th>Status</th>
</tr>
<tr>
<td>Desert Cat</td>
<td>Felis sylvestris</td>
<td> Rare</td>
</tr>
<tr>
<td> Indian Fox </td>
<td>Vulpus bengalensis </td>
<td> Uncommon</td>
</tr>
<tr>
<td> Desert Fox </td>
<td> Vulpus vulpus pusilla </td>
<td> Rare Endangered</td>
</tr>
<tr>
<td> Chinkara</td>
<td> Gazella bennettii</td>
<td> Common </td>
</tr>
<tr>
<td>Desert Jird </td>
<td> Meriones hurrianae </td>
<td> Common </td>
</tr>
<tr>
<td> Blue Bull </td>
<td> Boselaphus tragocamelus </td>
<td> Common </td>
</tr>
<tr>
<td> Indian Manggose</td>
<td> Vivericulla indica </td>
<td> Uncommon </td>
</tr>
<tr>
<td> Indian Hare </td>
<td> Lepus nigricollis </td>
<td>Uncommon </td>
</tr>
<tr>
<td> Indian Hedgehog </td>
<td> Hemiechinis micropus </td>
<td> Uncommon</td>
</tr>
</table>
<br><br>
<h2 style="text-align: center;">Checklist of Reptiles</h2>
<table>
<tr>
<th>Name Of The Reptiles</th>
<th>Scientific Name</th>
<th>Status</th>
</tr>
<tr>
<td>Spiny Tailed Lizard</td>
<td>Uromastyx hardwickii</td>
<td>Common</td>
</tr>
<tr>
<td>Fan Throated Lizard</td>
<td>Sitana ponticeriana</td>
<td>Uncommon</td>
</tr>
<tr>
<td>Desert Monitor Lizard</td>
<td>Varanus griseus</td>
<td>Common</td>
</tr>
<tr>
<td>Sind Sand Gecko</td>
<td>Crossobamon orientalis</td>
<td>Rare</td>
</tr>
<tr>
<td>Rock Killed Gecko</td>
<td>Hemidactylus maculatus</td>
<td>Common</td>
</tr>
<tr>
<td>Macro Gecko</td>
<td>Gekkonidae</td>
<td>Rare</td>
</tr>
<tr>
<td>Toed Headed Agama</td>
<td>Phrynocephalus mystaceus</td>
<td>Common</td>
</tr>
<tr>
<td>Brilliant Agama</td>
<td>Trapelus agilis</td>
<td>Common</td>
</tr>
<tr>
<td>Sand Fish</td>
<td>Scincus scincus</td>
<td>Common</td>
</tr>
<tr>
<td>Saw Scaled Viper</td>
<td>Echis carinatus</td>
<td>Common</td>
</tr>
<tr>
<td>Saw Russel Viper</td>
<td>Daboia russelii</td>
<td>Uncommon</td>
</tr>
<tr>
<td>Red Sand Boa</td>
<td>Eryx johnii</td>
<td>Common</td>
</tr>
<tr>
<td>Red Spotted Royal Snake</td>
<td>Spalerosophis arenarius</td>
<td>Uncommon</td>
</tr>
<tr>
<td>Awl Headed Snake</td>
<td>Crowned Leafnose Snake</td>
<td>Rare</td>
</tr>
<tr>
<td>Glossy Bileed Racer</td>
<td>ventromaculatus</td>
<td>Rare</td>
</tr>
<tr>
<td>Sind Krait</td>
<td>Bungarus sindianus walli</td>
<td>Rare</td>
</tr>
</table>
<br><br>
<p class="section-subtitle">Image Gallery of Desert National Park through our lens</p> <br>
<ul class="gallery-list">
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/DNP/DNP-6.jpg" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">
<img src="./assets/images/DNP/DNP-7.jpg" alt="Gallery image">
</figure>
</li>
<li class="gallery-item">
<figure class="gallery-image">