-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
75 lines (71 loc) · 2.64 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
<? include 'views/index-header.php' ?>
<main class="summary-section">
<h1>Find Your Adventure</h1>
<h2>We can take you to the limits of Wanaka, Queenstown, Mt Aoraki, Mt Aspiring & More</h2>
<section class="underline flex flex-j-center flex-a-center">
<div class="caption-holder flex-1">
<h3>Once In A Lifetime Experiences</h3>
<p>Fly to the limits is for people who want a one-off extreme experience in the most beautiful region on earth. Adrenaline pumping aerobatics, peaceful gliding through the mountains, flying in to remote lakes, tramping/climbing expeditions, custom sight seeing by the hour, day or week. </p>
</div>
<div class="img-holder">
<img src="assets/img/scenery/charters2.png" alt="image">
</div>
</section>
<h1>Discover Our Services</h1>
<h2>Select Below For More On Our Scenic Flights, Aerobatic Flights & Expedition Support</h2>
<section class="flex flex-j-center flex-a-center">
<div class="gallery-row flex flex-j-between">
<div class="flex-1">
<img src="assets/img/scenery/scenic.png" alt="image">
<a href="tours.html">
<div class="screen">
<h2>Scenic Flights</h2>
<h3>click find out more</h3>
</div>
</a>
</div>
<div class="flex-1">
<img src="assets/img/aircraft/cessna.jpg" alt="image">
<a href="tours.html">
<div class="screen">
<h2>Aerobatic Flights</h2>
<h3>click find out more</h3>
</div>
</a>
</div>
<div class="flex-1">
<img src="assets/img/scenery/multi-tour.png" alt="image">
<a href="tours.html">
<div class="screen">
<h2>Expeditions</h2>
<h3>click find out more</h3>
</div>
</a>
</div>
</div>
</section>
</main><!--summary-section-->
<div class="ribbon">
<h1>Start your adventure here</h1>
<a href="book-now.html" class='button'>Make a booking</a>
</div>
<div class="video-section">
<h1>See New Zealand Like Never Before</h1>
<h2>Check out our latest video compilation below</h2>
<div class="video-holder flex flex-j-center">
<iframe width="853" height="480" src="https://www.youtube-nocookie.com/embed/ule0cpfa5Wg?rel=0&controls=0&showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="social-media">
<h1>Stay in touch with us</h1>
<div class="wrapper">
<div class="icon-holder">
<i class="fa fa-facebook-square fa-4x"></i>
<i class="fa fa-twitter-square fa-4x"></i>
<i class="fa fa-pinterest-square fa-4x"></i>
<i class="fa fa-linkedin-square fa-4x"></i>
<i class="fa fa-google-plus-square fa-4x"></i>
</div>
</div>
</div><!--Social Media-->
<? include 'views/footer.php' ?>