-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestination.php
59 lines (45 loc) · 1.43 KB
/
destination.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
<?php
require_once "view/header.php";
?>
<header id="gtco-header" class="gtco-cover gtco-cover-sm" role="banner" style="background-image: url(images/img_6.jpg)">
<div class="overlay"></div>
<div class="gtco-container">
<div class="row">
<div class="col-md-12 col-md-offset-0 text-center">
<div class="row row-mt-15em">
<div class="col-md-12 mt-text animate-box" data-animate-effect="fadeInUp">
<h1>Destination</h1>
</div>
</div>
</div>
</div>
</div>
</header>
<div class="gtco-section">
<div class="gtco-container">
<div class="row">
<div class="col-md-8 col-md-offset-2 text-center gtco-heading">
<h2>Trip With Your Favourite Destination</h2>
<p>Dignissimos asperiores vitae velit veniam totam fuga molestias accusamus alias autem provident. Odit ab aliquam dolor eius.</p>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-6">
<a href="view/images/img_1.jpg" class="fh5co-card-item image-popup">
<figure>
<div class="overlay"><i class="ti-plus"></i></div>
<img src="view/images/img_1.jpg" alt="Image" class="img-responsive">
</figure>
<div class="fh5co-text">
<h2>New York, USA</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia..</p>
<p><span class="btn btn-primary">Schedule a Trip</span></p>
</div>
</a>
</div>
</div>
</div>
</div>
<?php
require_once "view/footer.php";
?>