-
Notifications
You must be signed in to change notification settings - Fork 0
/
national-parks.html
1646 lines (1634 loc) · 89.8 KB
/
national-parks.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 name="description" content="24h News - Broadcast News TV Channel & News Magazine Template">
<meta name="author" content="Via-Theme">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Site Title -->
<title>National Parks | 24h News</title>
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon" />
<!-- Web Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed%7CRoboto+Slab:300,400,700%7CRoboto:300,400,500,700" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/colors.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/jquery-ui.min.css">
<link rel="stylesheet" href="css/weather-icons.min.css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="pageloader">
<div class="loader-item"> <img src="img/load.gif" alt='loader' /> </div>
</div>
<!--========== BEGIN #WRAPPER ==========-->
<div id="wrapper" data-color="deep-orange">
<!--========== BEGIN #HEADER ==========-->
<header id="header">
<!-- Begin .top-menu -->
<div class="top-menu">
<!-- Begin .container -->
<div class="container">
<!-- Begin .left-top-menu -->
<ul class="left-top-menu">
<li> <a href="#" class="facebook"><i class="fa fa-facebook"></i></a></li>
<li> <a href="#" class="twitter"><i class="fa fa-twitter"></i></a> </li>
<li> <a href="#" class="youtube"> <i class="fa fa-youtube"></i></a> </li>
<li> <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a> </li>
<li> <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a> </li>
<li> <a href="#" class="instagram"> <i class="fa fa-instagram"></i></a> </li>
<li class="address"><a href="#"><i class="fa fa-phone"></i> +00 (123) 456 7890</a></li>
<li class="address"><a href="#"><i class="fa fa-envelope-o"></i> info@domain.com</a></li>
</ul>
<!-- End .left-top-menu -->
<!-- Begin .right-top-menu -->
<ul class="right-top-menu pull-right">
<li class="contact"><a href="contact.html"><i class="fa fa-map-marker fa-i"></i></a></li>
<li class="about"><a href="about-us.html"><i class="fa fa-user fa-i"></i></a> </li>
<li>
<div class="search-container">
<div class="search-icon-btn"> <span style="cursor:pointer"><i class="fa fa-search"></i></span> </div>
<div class="search-input">
<input type="search" class="search-bar" placeholder="Search..." title="Search"/>
</div>
</div>
</li>
</ul>
<!-- End .right-top-menu -->
</div>
<!-- End .container -->
</div>
<!-- End .top-menu -->
<!-- Begin .container -->
<div class="container">
<!-- Begin .header-logo -->
<div class="header-logo"><a href="index.html"><img src="img/logo.png" alt="Site Logo" />
<h1>24h <span>News</span></h1>
<h4>Your 24h News Source</h4>
</a></div>
<!-- End .header-logo -->
<!-- Begin .header-add-place -->
<div class="header-add-place">
<div class="desktop-add"><a href="#" target="_blank"><img src="img/ad_728x90.jpg" alt=""></a></div>
</div>
<!-- End .header-add-place -->
<!--========== BEGIN .NAVBAR #MOBILE-NAV ==========-->
<nav class="navbar navbar-default" id="mobile-nav">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" id="sidenav-toggle"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<div class="sidenav-header-logo"><a href="index.html"><img src="img/logo.png" alt="Site Logo" />
<h2>24h <span>News</span></h2>
<h5>Your 24h News Source</h5>
</a></div>
</div>
<div class="sidenav" data-sidenav data-sidenav-toggle="#sidenav-toggle">
<button type="button" class="navbar-toggle active" data-toggle="collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<div class="sidenav-brand">
<div class="sidenav-header-logo"><a href="index.html"><img src="img/logo.png" alt="Site Logo" />
<h2>24h <span>News</span></h2>
<h5>Your 24h News Source</h5>
</a></div>
</div>
<ul class="sidenav-menu">
<li><a href="index.html">Home</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="watch-live.html">Watch Live 24/7</a></li>
<li><a href="24-tv-radio.html">24 TV & Radio</a></li>
<li><a href="web-shows.html">Web Shows</a></li>
<li><a href="24-news-store.html">24 News Store</a></li>
</ul>
</li>
<li><a href="world.html">World</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="africa.html">Africa</a></li>
<li><a href="antarctica.html">Antarctica</a></li>
<li><a href="asia.html">Asia</a></li>
<li><a href="australia.html">Australia</a></li>
<li><a href="europe.html">Europe</a></li>
<li><a href="middle-east.html">Middle East</a></li>
<li><a href="north-america.html">North America</a></li>
<li><a href="south-america.html">South America</a></li>
</ul>
</li>
<li><a href="news.html">News</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="politics.html">Politics</a></li>
<li><a href="business.html">Business</a></li>
<li><a href="tech-science.html">Tech-Science</a></li>
<li><a href="lifestyle.html">Lifestyle</a></li>
</ul>
</li>
<li><a href="sport.html">Sport</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="americanfootball.html">American Football</a></li>
<li><a href="soccer.html">Soccer</a></li>
<li><a href="basketball.html">Basketball</a></li>
<li><a href="formula-1.html">Formula 1</a></li>
<li><a href="tennis.html">Tennis</a></li>
</ul>
</li>
<li><a href="health.html">Health</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="health-home.html">Health Home</a></li>
<li><a href="men-health.html">Men's Health</a></li>
<li><a href="women-health.html">Women's Health</a></li>
<li><a href="children-health.html">Children's Health</a></li>
<li><a href="alternative-medicine.html">Alternative Medicine</a></li>
<li><a href="nutrition.html">Nutrition & Fitness</a></li>
</ul>
</li>
<li><a href="institucional.html" class="active">Travel</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="destinations.html">Destinations</a></li>
<li><a href="types-of-trip.html">Types Of Trip</a></li>
<li><a href="national-parks.html" class="active">National Parks</a></li>
<li><a href="hotels.html">Hotels</a></li>
<li><a href="food-drinks.html">Food & drinks</a></li>
</ul>
</li>
<li><a href="art-entertainment.html">Art & Entertainment</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="music-opera.html">Music & Opera</a></li>
<li><a href="art-design.html">Art & design</a></li>
<li><a href="theatre-dance.html">Theatre & Dance</a></li>
<li><a href="celebrity-film.html">Celebrity & Film</a></li>
</ul>
</li>
<li><a href="tv-schedule.html">TV Schedule</a></li>
<li><a href="#">More</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="coming-soon.html">Coming Soon</a></li>
<li><a href="autos.html">Autos</a></li>
<li><a href="deals.html">Deals</a></li>
<li><a href="environment.html">Environment</a></li>
<li><a href="about-us.html">About Us</a></li>
</ul>
</li>
<li><a href="#">Pages</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="single-post.html">Single Post</a></li>
<li><a href="404.html">Error 404</a></li>
<li><a href="shortcodes.html">Shortcodes</a></li>
<li><a href="video.html">Video</a></li>
<li><a href="video-full.html">Video Full Width</a></li>
</ul>
</li>
<li><a href="#">Contact</a>
<div class="icon-sub-menu" data-sidenav-dropdown-toggle><span class="sidenav-dropdown-icon show" data-sidenav-dropdown-icon></span><span class="sidenav-dropdown-icon up-icon" data-sidenav-dropdown-icon></span></div>
<ul class="sidenav-dropdown" data-sidenav-dropdown>
<li><a href="contact.html">Contact</a></li>
<li><a href="contact-1.html">Contact 1</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<!--========== END .NAVBAR #MOBILE-NAV ==========-->
</div>
<!-- End .container -->
<!--========== BEGIN .NAVBAR #FIXED-NAVBAR ==========-->
<div class="navbar" id="fixed-navbar">
<!--========== BEGIN MAIN-MENU .NAVBAR-COLLAPSE COLLAPSE #FIXED-NAVBAR-TOOGLE ==========-->
<div class="main-menu nav navbar-collapse collapse" id="fixed-navbar-toggle"> <!--========== BEGIN .CONTAINER ==========-->
<div class="container">
<!-- Begin .nav navbar-nav -->
<ul class="nav navbar-nav">
<li><a href="index.html">Home</a></li>
<li><a href="world.html">World</a> </li>
<li><a href="news.html">News</a> </li>
<li><a href="sport.html">Sport</a></li>
<li><a href="health.html">Health</a></li>
<li class="active"><a href="institucional.html">Travel</a></li>
<li><a href="art-entertainment.html">Art & Entertainment</a></li>
<li><a href="tv-schedule.html">TV Schedule</a></li>
<!--========== BEGIN .DROPDOWN ==========-->
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">More</a>
<ul class="dropdown-menu">
<li><a href="coming-soon.html">Coming Soon</a></li>
<li><a href="autos.html">Autos</a></li>
<li><a href="deals.html">Deals</a></li>
<li><a href="environment.html">Environment</a></li>
<li><a href="about-us.html">About-us</a></li>
</ul>
</li>
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Pages</a>
<ul class="dropdown-menu">
<li><a href="single-post.html">Single Post</a></li>
<li><a href="404.html">Error 404 Page</a></li>
<li><a href="shortcodes.html">Shortcodes</a></li>
<li><a href="video.html">Video</a></li>
<li><a href="video-full.html">Video Full Width</a></li>
</ul>
</li>
<li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Contact</a>
<ul class="dropdown-menu">
<li> <a href="contact.html">Contact</a> </li>
<li><a href="contact-1.html">Contact 1</a></li>
</ul>
</li>
<!--========== END .DROPDOWN ==========-->
<!--========== BEGIN DROPDOWN MEGA-DROPDOWN ==========-->
<li class="dropdown mega-dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Mega Menu</a>
<ul class="dropdown-menu mega-dropdown-menu">
<!-- Begin col-sm-4-->
<li class="col-sm-4">
<h3 class="title">24h News In Pictures</h3>
<!-- Begin carousel-1-->
<div id="carousel-1" class="nav-slider carousel slide slide-carousel" data-ride="carousel">
<!-- Begin carousel-indicators-->
<ol class="carousel-indicators">
<li data-target="#carousel-1" data-slide-to="0" class="active"></li>
<li data-target="#carousel-1" data-slide-to="1"></li>
<li data-target="#carousel-1" data-slide-to="2"></li>
</ol>
<!-- End carousel-indicators-->
<!-- Begin carousel-inner-->
<div class="carousel-inner">
<div class="item active"> <a href="#"><img src="img/slider_720x410.jpg" alt=""></a> </div>
<div class="item"> <img src="img/slider_720x410.jpg" alt=""> </div>
<div class="item"> <img src="img/slider_720x410.jpg" alt=""> </div>
</div>
<!-- End carousel-inner-->
<a class="left carousel-control" href="#carousel-1" role="button" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="right carousel-control" href="#carousel-1" role="button" data-slide="next"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div>
<!-- End carousel-1-->
</li>
<!-- End col-sm-4 -->
<!-- Begin col-sm-4 -->
<li class="col-sm-4">
<h3 class="title">Latest News</h3>
<ul class="media-list">
<li class="media"> <a class="pull-right" href="news.html"><img class="img-responsive" alt="" src="img/image_76x44.jpg"></a>
<div class="media-body">
<p> <a href="news.html" target="_blank"><span class="bg-1">News</span></a><a href="news.html">Thousands of people have demonstrated against...</a></p>
</div>
</li>
<li class="media"> <a class="pull-right" href="sport.html"><img src="img/image_76x44.jpg" alt="" class="img-image media-object"></a>
<div class="media-body">
<p> <a href="sport.html" target="_blank"><span class="bg-4">Sport</span></a><a href="sport.html">Europe's top four leagues are to be guaranteed four places...</a></p>
</div>
</li>
<li class="media"> <a class="pull-right" href="health.html"><img src="img/image_76x44.jpg" alt="" class="img-image media-object"></a>
<div class="media-body">
<p><a href="health.html" target="_blank"><span class="bg-2">Health</span></a><a href="health.html">Robot performs surgery on soft tissue better than human...</a></p>
</div>
</li>
<li class="media"> <a class="pull-right" href="lifestyle.html"><img src="img/image_76x44.jpg" alt="" class="img-image media-object"></a>
<div class="media-body">
<p><a href="lifestyle.html" target="_blank"><span class="bg-9">Lifestyle</span></a><a href="lifestyle.html">A positive lifestyle can bring you happiness...</a></p>
</div>
</li>
</ul>
</li>
<!-- End col-sm-4 -->
<!-- Begin col-sm-4 -->
<li class="col-sm-4">
<h3 class="title">Video</h3>
<div class="video-container">
<iframe src="https://player.vimeo.com/video/100192146?title=0&byline=0&portrait=0" class="video" title="Advertisement"></iframe>
</div>
</li>
<!-- End col-sm-4 -->
<!-- Begin col-sm-8 -->
<li class="col-sm-8">
<h3 class="title">About Us</h3>
<p><a href="about-us.html" target="_blank"><strong>24h News</strong> is among the world's entry-posters in online news and information delivery. Help us make your comments count. Use our viewer comment page to tell us what you think about our shows and our hot topics for the day.</a></p>
</li>
<!-- End col-sm-8 -->
<!-- Begin col-sm-4 -->
<li class="col-sm-4">
<h3 class="title">Follow Us</h3>
<div class="menu-social-icons">
<ul>
<li> <a href="#" class="facebook"><i class="fa fa-facebook"></i></a> </li>
<li> <a href="#" class="youtube"><i class="fa fa-youtube"></i></a> </li>
<li> <a href="#" class="twitter"><i class="fa fa-twitter"></i></a> </li>
<li> <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a> </li>
<li> <a href="#" class="pinterest"><i class="fa fa-pinterest"></i></a> </li>
<li> <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a> </li>
<li> <a href="#" class="rss"><i class="fa fa-rss"></i></a> </li>
<li> <a href="#" class="tumblr"><i class="fa fa-tumblr"></i></a> </li>
</ul>
</div>
</li>
<!-- End col-sm-4 -->
</ul>
</li>
<!--========== END DROPDOWN MEGA-DROPDOWN ==========-->
</ul>
<!--========== END .NAV NAVBAR-NAV ==========-->
</div>
<!--========== END .CONTAINER ==========-->
</div>
<!--========== END MAIN-MENU .NAVBAR-COLLAPSE COLLAPSE #FIXED-NAVBAR-TOOGLE ==========-->
<!--========== BEGIN .SECOND-MENU NAVBAR #NAV-BELOW-MAIN ==========-->
<div class="second-menu navbar" id="nav-below-main">
<!-- Begin .container -->
<div class="container">
<!-- Begin .collapse navbar-collapse -->
<div class="collapse navbar-collapse nav-below-main">
<!-- Begin .nav navbar-nav -->
<ul class="nav navbar-nav">
<li><a href="destinations.html">Destinations</a></li>
<li><a href="types-of-trip.html">Types Of Trip</a></li>
<li class="currentLink"><a href="national-parks.html">National Parks</a></li>
<li><a href="hotels.html">Hotels</a></li>
<li><a href="food-drinks.html">Food & Drinks</a></li>
</ul>
<!-- End .nav navbar-nav -->
</div>
<!-- End .collapse navbar-collapse -->
<!-- Begin .clock -->
<div class="clock">
<div id="time"></div>
<div id="date"></div>
</div>
<!-- End .clock -->
</div>
<!-- End .container -->
</div>
<!--========== END .SECOND-MENU NAVBAR #NAV-BELOW-MAIN ==========-->
</div>
<!--========== END .NAVBAR #FIXED-NAVBAR ==========-->
</header>
<!--========== END #HEADER ==========-->
<!--========== BEGIN #MAIN-SECTION ==========-->
<section id="main-section">
<!--========== BEGIN .CONTAINER ==========-->
<div class="container">
<!-- Begin .breadcrumb-line -->
<div class="breadcrumb-line">
<ul class="breadcrumb">
<li>
<h5><a href="institucional.html">Travel</a></h5>
</li>
<li class="active">National Parks</li>
</ul>
</div>
<!-- End .breadcrumb-line -->
</div>
<!--========== END .CONTAINER ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module-top">
<div class="container">
<!--========== BEGIN .BREAKING-NEWS ==========-->
<!-- Begin .outer -->
<div class="outer">
<div class="breaking-ribbon">
<h5>Breaking News</h5>
</div>
<!-- Begin .newsticker -->
<div class="newsticker">
<ul>
<li>
<h4><span class="category">News:</span><a href="#"> Extra! Extra! Rethinking the 24 h News Breaking News Experience.</a></h4>
</li>
<li>
<h4><span class="category">Travel:</span><a href="#"> Man seriously hurt after jumping from upper level terminal while fleeing police.</a></h4>
</li>
<li>
<h4><span class="category">Politics:</span><a href="#"> We see momentous or informative events that are relevant to a wide audience.</a></h4>
</li>
<li>
<h4><span class="category">Health:</span><a href="#"> Evanston doctor gives up license after cancer drug probe.</a></h4>
</li>
<li>
<h4><span class="category">World:</span><a href="#"> North Coast fest organizers plan to decrease noise, increase security.</a></h4>
</li>
<li>
<h4><span class="category">Finance:</span><a href="#"> Credit rating hit, another big tax hike possible as clock ticks on pension overhaul.</a></h4>
</li>
</ul>
<div class="navi">
<button class="up"><i class="fa fa-caret-left"></i></button>
<button class="down"><i class="fa fa-caret-right"></i></button>
</div>
</div>
<!-- End .newsticker -->
</div>
<!-- End .outer -->
<!--========== END .BREAKING-NEWS ==========-->
<!--========== BEGIN .ROW ==========-->
<div class="row no-gutter">
<!-- Begin .full-block-three-columns-equal -->
<div class="full-block-three-columns-equal">
<!-- Begin .container-half -->
<div class="container-half">
<div class="entry-media">
<div class="image" style="background-image: url(img/image_875x656.jpg);">
<span><a class="label-7" href="#">World Travel</a></span> </div>
</div>
<div class="content">
<h4>Visitors rush to the Great Barrier Reef to catch it before it’s gone</h4>
</div>
</div>
<!-- End.container-half -->
<!-- Begin .container-half -->
<div class="container-half">
<div class="entry-media">
<div class="image" style="background-image: url(img/image_875x656.jpg);">
<span><a class="label-7" href="#">Destinations</a></span> </div>
</div>
<div class="content">
<h4>At least 26 dead as historic floods sweep West Virginia.</h4>
</div>
</div>
<!-- End.container-half -->
</div>
<!-- End .full-block-three-columns-equal -->
<!-- Begin .full-block-three-columns-equal -->
<div class="full-block-three-columns-equal">
<!-- Begin .container-full -->
<div class="container-full bottom-text full-photo">
<div class="entry-media">
<div class="image" style="background-image: url(img/image_875x656.jpg);"></div>
</div>
<div class="content">
<h2><a href="#">National parks must be for people, plants - not Big Oil </a></h2>
<h4>Huge swathe of new “protected natural area” is included within an oil and gas concession.</h4>
</div>
</div>
<!-- End .container-full-->
</div>
<!-- End .full-block-three-columns-equal -->
<!-- Begin .full-block-three-columns-equal -->
<div class="full-block-three-columns-equal">
<!-- Begin .sidebar-block -->
<div class="sidebar-block">
<div class="video-container">
<iframe src="https://player.vimeo.com/video/10297750?title=0&byline=0&portrait=0" class="video" title="Advertisement"></iframe>
</div>
</div>
<!-- End .sidebar-block -->
<!-- Begin .sidebar-add-place -->
<div class="sidebar-add-place"><a href="#" target="_blank"><img src="img/ad_400x270.jpg" alt=""></a> </div>
<!-- End .sidebar-add-place -->
<!--========== BEGIN #SIDEBAR-SOCIAL-BUTTONS ==========-->
<div class="sidebar-social-icons">
<ul>
<li> <a href="#" class="facebook"><i class="fa fa-facebook"></i></a> </li>
<li> <a href="#" class="youtube"><i class="fa fa-youtube"></i></a> </li>
<li> <a href="#" class="twitter"><i class="fa fa-twitter"></i></a> </li>
<li> <a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a> </li>
<li> <a href="#" class="pinterest"><i class="fa fa-pinterest"></i></a> </li>
<li> <a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a> </li>
<li> <a href="#" class="rss"><i class="fa fa-rss"></i></a> </li>
<li> <a href="#" class="tumblr"><i class="fa fa-tumblr"></i></a> </li>
</ul>
</div>
<!--========== END #SIDEBAR-SOCIAL-BUTTONS ==========-->
</div>
<!-- End .full-block-three-columns-equal -->
</div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module highlight">
<div class="container">
<div class="row no-gutter">
<!--========== BEGIN .COL-MD-8 ==========-->
<div class="col-md-8">
<div class="module-title">
<h3 class="title"><span class="bg-7">Africa’s</span></h3>
<h3 class="subtitle">Best National Parks</h3>
</div>
<!--========== BEGIN .ARTICLE ==========-->
<div class="article">
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Masai Mara</strong> Reserve</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Tanzania</strong> Serengeti Park </a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>South Africa</strong> Kruger Park </a></h4>
</div>
</div>
</div>
</div>
<div class="article">
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Botswana</strong> Chobe Park</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Namibia</strong> Etosha Park</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong> 5 Top</strong> National Parks</a></h4>
</div>
<p><strong>An introduction to African wildlife safaris</strong> and is a good starting point for planning your next road trip.</p>
<p><strong> Each of the national parks</strong> offers a unique safari experience with its own strengths and beaut.</p>
</div>
</div>
</div>
<!--========== END .ARTICLE ==========-->
<div class="module-title">
<h3 class="title"><span class="bg-7">Captivating Asian</span></h3>
<h3 class="subtitle">National Parks</h3>
</div>
<!--========== BEGIN .ARTICLE ==========-->
<div class="article">
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Israel</strong> Desert-Masada</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>China</strong> Zhangjiajie Park</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Japan</strong> Fuji Park</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Sri Lanka</strong> Yala Park</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Indonesia</strong> Pangrango</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Thailand</strong> Khao Sok Park</a></h4>
</div>
</div>
</div>
</div>
<!--========== END .ARTICLE ==========-->
</div>
<!--========== END .COL-MD-8 ==========-->
<!--========== BEGIN .COL-MD-4 ==========-->
<div class="col-md-4">
<!--========== BEGIN .SIDEBAR-NEWSFEED ==========-->
<div class="sidebar-newsfeed">
<!-- Begin .block-title-1 -->
<div class="block-title-1">
<h3><strong>National Parks</strong> We Want to Visit</h3>
</div>
<!-- End .block-title-1 -->
<!-- Begin .newsfeed -->
<div class="newsfeed-6">
<ul>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Grand Teton National Park, U.S.A., offers magnificent mountain vistas.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">On safari in Namibia’s Etosha National Park, you’ll spy lions, elephants, zebras and much more.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Located in Queensland, Australia, Lamington National Park encompasses miles of lush rain...</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Torres del Paine National Park protects some of Patagonian Chile’s most stunning landscapes.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Komodo National Park in Indonesia is to the endangered Komodo dragon, along with a variety of marine...</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#">Northeast Greenland National Park is the world’s biggest national park, but it’s so difficult to reach.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#"><strong>Denali National Park, AK,</strong> offers jaw-dropping mountain vistas, wildlife—and elbow room.</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#"><strong>Beautiful Horseshoe Lake,</strong> in Denali, is just one of the beautiful sights in Alaska's big</a></p>
</div>
</div>
</li>
<li>
<div class="item">
<div class="item-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_370x185.jpg" alt=""></a></div>
<div class="item-content">
<p class="ellipsis"><a href="#"><strong>Enjoy easy</strong> hikes—or get more adventurous on backcountry trails—in Denali.</a></p>
</div>
</div>
</li>
</ul>
</div>
<!-- End .newsfeed -->
</div>
<!--========== END .SIDEBAR-NEWSFEED ==========-->
<div class="sidebar-content">
<!-- Begin .title-style01 -->
<div class="title-style01">
<h3><strong>Your Next</strong> Road Trip</h3>
</div>
<!-- End .title-style01 -->
<ul class="list list-mark-2">
<li><strong>When the weather turns warm and the days grow longer,</strong> it's time to start planning next road trip...</li>
<li><strong>Millions have packed up the family</strong> to hike through impossibly lush forests, to gaze upon towering cliffs and deep-plunging canyons...</li>
<li><strong>National Parks </strong> captures the stunning beauty of wild places and reminds us these landscapes are an essential part of the human spirit.</li>
</ul>
</div>
</div>
<!--========== END .COL-MD-4 ==========-->
</div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module dark">
<div class="container">
<div class="show-info">
<h4 class="schedule-logo bg-7"><a href="tv-schedule.html" target="_blank">TV Schedule</a></h4>
<div class="show-title">
<h2>Road Trips</h2>
<h3>Hosted by Neal Bailey</h3>
</div>
<h4><a class="show-info-button bg-7" href="#"> The First Stop On Your Next Trip is the Travel & Adventure Show, Afternoon ai 16:30 </a></h4>
<div class="figure"><img src="img/schedule_figure.png" alt=""></div>
</div>
<div class="schedule-squares"><span class="square2"></span><span class="square3"></span><span class="square4"></span> <span class="square5"></span><span class="square6"></span><span class="square7"></span><span class="square8"></span><span class="square9"></span><span class="square10"></span><span class="square11"></span></div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module highlight">
<div class="container">
<div class="row no-gutter">
<!--========== BEGIN .COL-MD-8 ==========-->
<div class="col-md-8">
<div class="module-title">
<h3 class="title"><span class="bg-11">Australia</span></h3>
<h3 class="subtitle">Best National Parks</h3>
</div>
<!--========== BEGIN .ARTICLE ==========-->
<div class="article">
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong> South Wales</strong> Royal </a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>N. Territory</strong> Uluru-Kata </a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Queensland</strong> Moreton </a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>South Australia</strong> Kangaroo </a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Victoria</strong> Grampians </a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Queensland,</strong> Tasmania, Victoria</a></h4>
</div>
<p><strong>Home to some of the most lush rainforests</strong>, vibrant deserts and spectacular mountain ranges...</p>
<p><strong>Whether you’re looking to hike</strong>, enjoy water sports or soak up spectacular scenery...</p>
</div>
</div>
</div>
<!--========== END .ARTICLE ==========-->
</div>
<!--========== END .COL-MD-8 ==========-->
<!--========== BEGIN .COL-MD-4 ==========-->
<div class="col-md-4">
<!--========== BEGIN .TV SCHEDULE ==========-->
<div class="sidebar-schedule">
<!-- Begin .block-title-2 -->
<div class="block-title-2">
<h3><strong>TV</strong> Schedule</h3>
</div>
<!-- End .block-title-2 -->
<div id="sidebar-schedule-slider" class="owl-carousel">
<!-- Begin .schedule-slide -->
<div class="sidebar-schedule-slide">
<div class="sidebar-schedule-slider-layer full"> <a href="news.html">
<div class="content">
<h3 class="hour-tag">18:00</h3>
<h4 class="sidebar-show-title bg-1">Around the World</h4>
<p>New global rules on firms' tax disclosure urged by economists</p>
</div>
<img src="img/image_959x810.jpg" alt=""> </a> </div>
</div>
<!-- End .schedule-slide -->
<!-- Begin .schedule-slide -->
<div class="sidebar-schedule-slide">
<div class="sidebar-schedule-slider-layer full"> <a href="news.html">
<div class="content">
<h3 class="hour-tag">18:45</h3>
<h4 class="sidebar-show-title bg-1">Sport Headlines</h4>
<p>All the latest sports news from around the world.</p>
</div>
<img src="img/image_959x810.jpg" alt=""> </a> </div>
</div>
<!-- End .schedule-slide -->
<!-- Begin .schedule-slide -->
<div class="sidebar-schedule-slide">
<div class="sidebar-schedule-slider-layer full"> <a href="news.html">
<div class="content">
<h3 class="hour-tag">22:00</h3>
<h4 class="sidebar-show-title bg-1">Happening Now</h4>
<p>Kerry Thomas will take you to news when and where it happens.</p>
</div>
<img src="img/image_959x810.jpg" alt=""> </a> </div>
</div>
<!-- End .schedule-slide -->
</div>
</div>
<!--========== END .TV SCHEDULE ==========-->
<!--========== BEGIN #SIDEBAR-NEWSLETTER ==========-->
<div id="sidebar-newsletter">
<!-- Begin .title-style01 -->
<div class="title-style01">
<h3><strong>Newsletter</strong></h3>
</div>
<!-- End .title-style01 -->
<!-- Begin .sidebar-newsletter-form -->
<div class="sidebar-newsletter-form">
<form class="form-horizontal" action="include/subscribe.php" id="subscribeForm" method="POST">
<div class="input-group">
<input title="Newsletter" class="form-control" name="email" type="email" id="address" placeholder="Enter Your Email Address" data-validate="validate(required, email)" required>
<span class="input-group-btn">
<button type="submit" class="btn btn-success">Subscribe</button>
</span> </div>
</form>
<span id="result" class="alertMsg"></span> </div>
<!-- End .sidebar-newsletter-form -->
</div>
<!--========== END #SIDEBAR-NEWSLETTER ==========-->
</div>
<!--========== END .COL-MD-4 ==========-->
</div>
</div>
</section>
<!--========== END .MODULE ==========-->
<!-- Begin .parallax-section1 -->
<div id="parallax-section1">
<div class="image13 img-overlay1">
<div class="container">
<div class="caption text-center">
<h2 class="color-white weight-300">We introduce you to the team at <strong>24h News Team!</strong> Get more information about us here!</h2>
<a href="about-us.html" target="_blank" class="btn btn-default">About Us</a> </div>
</div>
</div>
</div>
<!-- End .parallax-section1 -->
<!-- Begin .add-place -->
<div class="add-place"> <a href="#" target="_blank"><img src="img/ad_820x100.jpg" alt=""></a> </div>
<!-- End .add-place -->
<!--========== BEGIN .MODULE ==========-->
<section class="module">
<h2 class="title-style05 style-02">more headlines in our <span><a href="#">item sections</a></span></h2>
<!-- Begin .title-style05-bg -->
<div class="center-title"> <span class="title-line-left"></span>
<h4 class="title-style05 style-01">latest # news</h4>
<span class="title-line-right"></span> </div>
<!-- End .title-style05-bg -->
<!--========== BEGIN .CONTAINER ==========-->
<div class="container">
<!--========== BEGIN SMALL-GALLERY ==========-->
<!-- Begin .carousel-title -->
<h3 class="carousel-title">Travel Carousel</h3>
<!-- End .carousel-title -->
<!-- Begin .gallery-slider owl-carousel -->
<div id="small-gallery-slider" class="owl-carousel">
<div class="small-gallery"> <img src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="destinations.html">Destinations</a>
<p><a href="destinations.html">Where to go in 2016: Top 10 destinations</a></p>
<i class="fa fa-clock-o"></i><span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="types-of-trip.html">Types 0f Trip </a>
<p><a href="types-of-trip.html">This is the style of travel long term, slow.</a></p>
<i class="fa fa-clock-o"></i><span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="national-parks.html">National Parks </a>
<p><a href="national-parks.html">Power to the National Parks of world is undeniable.</a></p>
<i class="fa fa-clock-o"></i><span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="hotels.html">Hotels </a>
<p><a href="hotels.html">Get inspired. More Travelers' Choice Awards.</a></p>
<i class="fa fa-clock-o"></i><span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
<div class="small-gallery"> <img src="img/image_108x108.jpg" alt="">
<div class="post-content"> <a href="food-drinks.html">Food & Drinks </a>
<p><a href="lifestyle.html">Explore World through different cuisines</a></p>
<i class="fa fa-clock-o"></i><span class="day"> Fri, 20 Dec, 2016</span> </div>
</div>
</div>
<!-- End .gallery-slider owl-carousel -->
<!--========== END SMALL-GALLERY ==========-->
</div>
<!--========== END .CONTAINER ==========-->
</section>
<!--========== END .MODULE ==========-->
<!--========== BEGIN .MODULE ==========-->
<section class="module highlight">
<div class="container">
<div class="row no-gutter">
<!--========== BEGIN .COL-MD-8 ==========-->
<div class="col-md-8">
<div class="module-title">
<h3 class="title"><span class="bg-7">Europe</span></h3>
<h3 class="subtitle">Best National Parks</h3>
</div>
<!--========== BEGIN .ARTICLE ==========-->
<div class="article">
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Gran Paradiso</strong> Italy</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Triglav</strong> Slovenia</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong>Peneda-Gerês</strong> Portugal</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">
<h4><a href="#"><strong> Switzerland</strong> Germany</a></h4>
</div>
</div>
</div>
<div class="entry-block-xs">
<div class="entry-image"><a class="img-link" href="#"><img class="img-responsive img-full" src="img/image_800x400.jpg" alt=""></a></div>
<div class="entry-content">
<div class="title-left title-style04 underline04">