-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (173 loc) · 6.4 KB
/
index.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<title>Web Design</title>
</head>
<body>
<nav>
<div class="nav__logo"><a href="#">Plane collection</a></div>
<ul class="nav__links">
<li class="link">Home</li>
<li class="link">Planes</li>
<li class="link">about</li>
<li class="link">Contacts</li>
</ul>
</nav>
<header>
<div class="section__container">
<div class="header__content">
<h1>Luxury Planes</h1>
<p>
Luxury<b>
Aircraft stand as the zenith of aeronautical magnificence,
providing not only efficiency in travel but also an amalgamation
of speed, engineering prowess, and grace, brought to life through
state-of-the-art aviation technology, top-tier components, and
meticulous artistry. Possessing potent engines and exclusive
amenities, they encapsulate a sense of elegance and prestige,
tailored for perceptive aviators in pursuit of the ultimate flight
encounter. This aviation marvel is crafted to captivate the most
astute aviation aficionados, ensuring an unparalleled journey
through the skies.</b
>
</p>
<button>Read more</button>
</div>
</div>
</header>
<section class="journey__container">
<div class="section__container">
<h2 class="section__title">Select your Plane</h2>
<p class="section__subtitle">The Most Luxurious Planes</p>
<div class="journey__grid">
<div class="plane__card">
<img
src="images-planes/bkpam298060_shutterstock_118025200.jpg"
alt="plane"
/>
<div class="plane__name">
<span>Turbo Prop</span>
</div>
</div>
<div class="plane__card">
<img src="images-planes/pexels-photo-1549308.jpeg" alt="plane" />
<div class="plane__name">
<span>Helicopter</span>
</div>
</div>
<div class="plane__card">
<img
src="images-planes/Cirrus_Aircraft_2014_SR22T_Orange_Carbon_01.jpg"
alt="plane"
/>
<div class="plane__name">
<span>Piston Engine</span>
</div>
</div>
<div class="plane__card">
<img src="images-planes/shutterstock_95222554.jpg" alt="plane" />
<div class="plane__name">
<span>Long Range Jet</span>
</div>
</div>
<div class="plane__card">
<img src="images-planes/shutterstock_142765921.jpg" alt="plane" />
<div class="plane__name">
<span>Ultra Long Range</span>
</div>
</div>
<div class="plane__card">
<img src="images-planes/shutterstock_60070363.jpg" alt="plane" />
<div class="plane__name">
<span>Light Jet</span>
</div>
</div>
</div>
</div>
</section>
<section class="banner__container">
<div class="section__container">
<div class="banner__content">
<h2>Rent a luxury Plane of your dreams</h2>
<p style="text-align: justify">
Charter your fantasy luxury aircraft from a range of esteemed rental
enterprises. Indulge in the allure of opulence and refinement
without the weight of ownership. Select from sleek fighter jets,
elegant business jets, or lavish private planes for momentous
occasions or travel expeditions. Review the leasing conditions for a
seamless and exquisite journey above the clouds.
</p>
<button>Pick a Plane</button>
</div>
</div>
</section>
<section class="display__container">
<div class="section__container">
<h2 class="section__title">Why Choose Us</h2>
<p class="section__subtitle">
We present to you the finest and opulent airplanes, driven by our
mission to assist you in piloting your dream aircraft.
</p>
<div class="display__grid">
<div class="display__card grid-1">
<img
src="images-planes/photo-1628750709971-aa07bd8bf44a.avif"
alt="grid"
/>
</div>
<div class="display__card">
<i class="ri-earth-line"></i>
<h4>Best Pilots</h4>
<p>
We instruct and prioritize your safety with top-notch safety
equipment and expert instructors.
</p>
</div>
<div class="display__card">
<img
src="images-planes/premium_photo-1661516007072-28b70c288603.avif"
alt="grid"
/>
</div>
<div class="display__card">
<img
src="images-planes/ec2521aa0ce61665859865-pexels-jenny-uhling-8573163.jpg"
alt="grid"
/>
</div>
<div class="display__card">
<i class="ri-road-map-line"></i>
<h4>Limitless Airborne Rentals</h4>
<p style="text-align: justify">
Explore the skies aboard exquisite aircraft over breathtaking
landscapes with no airspace restrictions.
</p>
</div>
</div>
</div>
</section>
<footer>
<div class="section__container">
<h4>Planescollection.co</h4>
<div class="social__icons">
<span><i class="ri-facebook-fill"></i></span>
<span><i class="ri-twitter-fill"></i></span>
<span><i class="ri-instagram-line"></i></span>
<span><i class="ri-linkedin-fill"></i></span>
</div>
<p>
Flying fulfills your dreams. You pilot the luxury dream plane of your
life.
</p>
</div>
</footer>
</body>
</html>