-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
119 lines (103 loc) · 3.76 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FMS Lab</title>
<!-- Main CSS file -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/owl.carousel.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="stylesheet" href="css/font-awesome.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/responsive.css" />
<!-- Favicon -->
<!-- <link rel="shortcut icon" href="images/icon/favicon.png"> -->
<link rel="shortcut icon" href="https://image.freepik.com/free-icon/musical-symbol-of-letter-f_318-43242.jpg">
<!-- <link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/icon/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/icon/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/icon/apple-touch-icon-72-precomposed.png"> -->
<!-- <link rel="apple-touch-icon-precomposed" href="images/icon/apple-touch-icon-57-precomposed.png"> -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- PRELOADER -->
<div id="st-preloader">
<div id="pre-status">
<div class="preload-placeholder"></div>
</div>
</div>
<!-- /PRELOADER -->
<!-- HEADER -->
<?php include_once('include/_header.php') ?>
<!-- /HEADER -->
<section id="tabs">
<div class="tab-content">
<div id="about" class="tab-pane fade in active">
<h1>About</h1>
<?php include_once('include/_about.php') ?>
</div>
<div id="guide" class="tab-pane fade">
<h1>Guide</h1>
<?php include_once('include/_guide.php') ?>
</div>
<div id="safety" class="tab-pane fade">
<h1>Safety</h1>
<?php include_once('include/_safety.php') ?>
</div>
<div id="booking_old" class="tab-pane fade">
<h1>Booking</h1>
<?php include_once('include/_booking_old.php') ?>
</div>
<div id="booking" class="tab-pane fade">
<h1>Booking</h1>
<?php include_once('include/_booking.php') ?>
</div>
<div id="contactus" class="tab-pane fade">
<h1>Contact Us</h1>
<?php include_once('include/_contactus.php') ?>
</div>
</div>
</section>
<?php include_once('include/_footer.php') ?>
<!-- Scroll-up -->
<div class="scroll-up">
<ul>
<li>
<a href="#header">
<i class="fa fa-angle-up"></i>
</a>
</li>
</ul>
</div>
<!-- JS -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- jQuery -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- Bootstrap -->
<script type="text/javascript" src="js/jquery.parallax.js"></script>
<!-- Parallax -->
<script type="text/javascript" src="js/smoothscroll.js"></script>
<!-- Smooth Scroll -->
<script type="text/javascript" src="js/masonry.pkgd.min.js"></script>
<!-- masonry -->
<script type="text/javascript" src="js/jquery.fitvids.js"></script>
<!-- fitvids -->
<script type="text/javascript" src="js/owl.carousel.min.js"></script>
<!-- Owl-Carousel -->
<script type="text/javascript" src="js/jquery.counterup.min.js"></script>
<!-- CounterUp -->
<script type="text/javascript" src="js/waypoints.min.js"></script>
<!-- CounterUp -->
<script type="text/javascript" src="js/jquery.isotope.min.js"></script>
<!-- isotope -->
<script type="text/javascript" src="js/jquery.magnific-popup.min.js"></script>
<!-- magnific-popup -->
<script type="text/javascript" src="js/scripts.js"></script>
<!-- Scripts -->
</body>
</html>