-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
70 lines (70 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
$file="./head.php";
if (file_exists($file)) { include($file); }
//all the html page content
$content='<section id="con-sec">
<div class="banner">
<h1>Contact us</h1>
<h4>While were good with smoke signals, there are simpler ways <br> for us to get in touch and answer your questions.</h4>
</div>
<div class="main">
<div class="help-box">
<img src="img/btn/faq.png" alt="">
<h3>FAQS</h3>
<a href="faq.php">Find your answer</a>
</div>
<div class="help-box">
<img src="img/btn/gift.png" alt="">
<h3>Gift Cards</h3>
<a href="gift.php">Find out more</a>
</div>
<div class="help-box">
<img src="img/btn/plane.png" alt="">
<h3>Our Trips</h3>
<a href="help-trip.php">Find out more</a>
</div>
<div class="help-box">
<img src="img/btn/forum.png" alt="">
<h3>Forum</h3>
<a href="forum.php">Join</a>
</div>
</div>
<div class="supp-box">
<h1>STILL CANT FIND WHAT
YOURE LOOKING FOR?</h1>
<a href="ask.php">Send us a mail</a>
</div>
<div class="con-box">
<div class="con-info">
<h2>Customer Service Team</h2>
<p>00 32 458 54 98 65
<br>
Monday – Friday
<br>
7:00AM – 7:00PM</p>
<a href="ask.php">Email us</a>
</div>
<div class="con-info">
<h2>Management of the Agency</h2>
<p>Old Markt
<br>
Brussel 1000
<br>
Belgium</p>
</div>
<div class="con-info">
<h2>Travel Agency Store</h2>
<p>Old Markt
<br>
Brussel 1000
<br>
Belgium</p>
<a href="">More information</a>
</div>
</div>
</section>';
//show to page
echo $content;
$file="./foot.php";
if (file_exists($file)) { include($file); }
?>