-
Notifications
You must be signed in to change notification settings - Fork 0
/
story.html
117 lines (83 loc) · 3.51 KB
/
story.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="jouw naam">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles/stylesheet.css">
<script src="https://kit.fontawesome.com/038d209cc5.js" crossorigin="anonymous"></script>
<title>Platoon aviation</title>
<link rel="icon" type="image/svg+xml" href="images/favicon.png">
</head>
<body class="page2">
<header>
<nav>
<a href="index.html" >
<figure>
<img src="./images/platoon-white.svg" alt="The platoon logo">
</figure>
</a>
<div class="menuToggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a href="#">The Jets</a></li>
<li><a href="#">The Experience</a></li>
<li><a href="story.html">Our Story</a></li>
</ul>
</div>
</nav>
</header>
<main>
<video autoplay loop muted poster="../FED/images/videoafb.jpg">
<source src="images/video/platoon-clouds-mobile.mp4" type="video/mp4">
</video>
<!-- <div ></div> -->
<article>
<h1>Our Story</h1>
<p>Platoon Aviation was formed with the mission to refine
what it means to fly private. Created by ardent aviators
and united in our passion to bring a new approach to the
charter industry.
We came together with the vision to build a new airline,
and introduce a new approach in charter travel and revive
the age-old romanticism of flying.
</p>
<p>
We are a team which has worked exclusively in the charter industry; it’s safe to say that by now we all have a little kerosene in our blood. We are delighted to be serving you and the community of fellow travellers across the skies. Welcome to the new age of flying, welcome to PLATOON.
</p>
</article>
<!-- <div></div> -->
</main>
<footer>
<ul>
<li>
<a href="#">+49 40 182 2796 11</a>
<br>
<a href="#">[email protected]</a>
</li>
<li>
<a href="https://youtu.be/jPmLkxo2KMo">LinkedIn</a>
|
<a href="#">Instagram</a>
</li>
<li>
<a href="">Imprint</a>
|
<a href="">Privacy Policy</a>
</li>
<li>©2021 Platoon Aviation <br>From Hamburg with love</li>
</ul>
</footer>
<section class="end">
</section>
<a href="#" class="to-top">
<i class="fa-solid fa-plane-up"></i>
<!-- <p>Back to top!</p> -->
</a>
<script src="./scripts/script.js"></script>
</body>
</html>