-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
51 lines (46 loc) · 1.05 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include("include/head-links.php");
?>
<title>Contact Us | Sai Laxmi Travels Bilaspur</title>
</head>
<body>
<main>
<?php
include("include/header.php");
?>
<?php
include("include/navbar.php");
?>
<!-- heading & background -->
<div class="">
<!--breadcrum-->
<div class="breadcrumb-section">
<div class="breadcrumb-inner">
<div class="container">
<div class="row">
<div class="col-lg-12 col-sm-12 text-center">
<ol class="breadcrumb greylinks">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item active" >Contact Us</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div><!--ends heading-->
<?php
include("include/contact-form.php");
?>
<?php
include("include/footer.php");
?>
</main>
<?php
include("include/script.php");
?>
</body>
</html>