-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcargo.html
381 lines (316 loc) · 11 KB
/
cargo.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
<!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 rel="stylesheet" href="main_style.css">
<title>Cargo Services</title>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<style>
* {
margin: 0;
padding: 0;
}
h1 {
color: white;
font-weight: bold;
font-size: 2rem;
}
h2 {
color: white;
font-weight: bold;
font-size: 0.5rem;
}
h3
{
color: white;
}
p {
/* color: white; */
font-weight: 35;
font-size: 1rem;
}
body {
background: rgb(34, 193, 195);
background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(13, 191, 158, 1) 0%, rgba(4, 98, 152, 1) 100%, rgba(17, 225, 160, 1) 100%);
}
section {
padding: 15rem 0 5rem 0;
}
.textcenter {
position: relative;
}
.textcenter .text-centered {
animation: shaketxt 3s infinite;
font-family:Verdana, Geneva, Tahoma, sans-serif;
position: absolute;
top: 20%;
left: 0;
width: 100%;
text-align: center;
color: white;
font-size: 4rem;
font-weight: bolder;
color: white;
font-weight: 500;
}
@keyframes shaketxt {
0% {
transform: translateY(0)
}
25% {
transform: translateY(10px);
}
50% {
transform: translateY(10px);
}
100% {
transform: translateY(0px);
}
}
.image1 {
flex: 1;
width: 100%;
height: 10%;
max-height: 10%;
}
.image2 {
flex: 1;
height: 10%;
/* max-height: 10%; */
height: 350px;
}
.image3 {
flex: 1;
height: 10%;
height: 350px;
}
.image4 {
flex: 1;
height: 10%;
height: 350px;
}
img {
max-width: 100%;
}
table {
margin-top: 8px;
text-align: center;
width: 80%;
margin-left: 10%;
margin-right: 10%;
border-collapse: collapse;
}
th {
font-size: 1.2em;
padding: .5em;
background-color: rgb(84, 201, 247);
color: white;
border-style: solid;
border-color: black;
}
td {
padding: 1em;
border-style: solid;
}
form p {
margin-right: 1em;
}
form {
padding-top: 1em;
padding-left: 1em;
padding-right: 1em;
padding-bottom: .3em;
margin: auto;
}
input,
button,
select {
display: block;
box-sizing: border-box;
padding: .5em;
margin: 1em;
}
label
{
margin-left: 1rem;
color: white;
}
input[type=submit] {
font-size: 1.2em;
background-color: rgb(84, 201, 247);
color: white;
border-radius: .5em;
margin-left: 5em;
position: relative;
bottom: .5em;
}
@media (max-width:1200px) {
h1 {
padding-left: clamp(2rem, 1.5vw + 3px, rem);
font-size: clamp(rem, 2.5vw, 1rem);
}
}
</style>
<body>
<header>
<nav>
<ul>
<li><a href="main_page.php">Home Page</a></li>
<!-- Sub navigation menu -->
<div class="subnav">
<li><a href="book_a_trip.php">Plan & Book <i class="fa fa-caret-down"></i></a></li>
<div class="subnav-content">
<li><a href="book_a_trip.php">Book a trip</a></li>
<li><a href="flight_schedule_search.php">Flight Schedule Search</a></li>
<li><a href="manage_booking.php">Manage Booking</a></li>
<li><a href="FlightStatus.php">Flight Status</a></li>
</div>
</div>
<div class="subnav">
<li><a href="PassengerServices.html">Services <i class="fa fa-caret-down"></i></a></li></button>
<div class="subnav-content">
<li><a href="PassengerServices.html">Passenger Services</a></li>
<li><a class="active" href="cargo.html">Cargo Services</a></li>
<li><a href="BaggageInfo.html">Baggage Info</a></li>
<li><a href="checkin.php">Check-in</a></li>
</div>
</div>
<li><a href="CovidRestrictions.html">Covid Restrictions</a></li>
<li><a href="Faq.html">FAQ</a>
<li><a href="login.php">Login/Register</a>
</ul>
<!-- hamburger menu, only essentiel links -->
<div class="topnav">
<a href="main_page.php">
<ion-icon name="airplane-outline"></ion-icon>
</a>
<div id="myLinks">
<a href="book_a_trip.php">Book a trip</a>
<a href="checkin.php">Check-in</a>
<a href="login.php">Login</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</nav>
</header>
<figure class="textcenter">
<img src="cargopics/cargo0.jpg" alt="cargo" width="100%" height="400" ;>
<h1 class="text-centered">Cargo Services</h1>
</figure>
<h1 style="text-align: center; color: white;">Our Cargo Services include:</h1>
<table style="width: 60%; margin-left: auto; margin-right: auto; margin-bottom: 1em;">
<tr>
<th><img src="cargopics/pets.png" alt="pets"><br></th>
<th><img src="cargopics/medicine.png" alt="medicine"><br></th>
<th><img src="cargopics/delivery-box.png" alt="boxes"><br></th>
<th><img src="cargopics/box.png" alt="packages"><br></th>
</tr>
<tr>
<td>
<h3>Pets and Animals</h3>
</td>
<td>
<h3>Medicine stored in a specified temperature</h3>
</td>
<td>
<h3>Different special packages</h3>
</td>
<td>
<h3>Any type of goods</h3>
</td>
</tr>
</table>
<!-- <section>
<form post="method" autocomplete="on" style="margin-top: -12rem;width: 50%;">
<fieldset>
<legend style="color: black; margin-left: 2em;">Flight Search</legend>
<p>
<label>Origin<input style="width: 50%;" name="origin" type="text" list="originlist" required></label>
<datalist id="originlist">
<option value="Abidjan Cote d'Ivoire ABJ">
<option value="Abu Dhabi - Abu Dhabi International United Arab Emirates AUH">
<option value="Accra - Kotoka International Airport Ghana ACC">
<option value="Amsterdam - Amsterdam Airport Schiphol Netherlands AMS">
<option value="Athens - Elefthérios Venizélos International Airport Greece ATH">
<option value="Basra, Basrah Iraq BSR">
<option value="Beirut - Beirut Rafic Hariri International Airport Lebanon BEY">
<option value="Brussels - Brussels Airport Belgium BRU">
<option value="Cairo - Cairo International Airport Egypt CAI">
<option value="Copenhagen - Copenhagen Airport Denmark CPH">
<option value="Dammam, King Fahad International Saudi Arabien DMM">
<option value="Disneyland Paris France DLP">
<option value="Doha - Doha International Airport Qatar DOH">
<option value="Dubai - Dubai International Airport United Arab Emirates DXB">
<option value="East London South Africa ELS">
<option value="Eriwan (Yerevan, Jerevan) Armenia EVN">
<option value="Frankfurt/Main - Frankfurt Airport (Rhein-Main-Flughafen) Germany FRA">
<option value="Geneva - Geneva-Cointrin International Airport Switzerland GVA">
<option value="Istanbul - Istanbul Atatürk Airport Turkey IST">
<option value="Jeddah - King Abdulaziz International Saudi Arabia JED">
<option value="Kuwait - Kuwait International Kuwait KWI">
<option value="Lagos - Murtala Muhammed Airport Nigeria LOS">
<option value="Larnaca Cyprus LCA">
<option value="London Metropolitan Area United Kingdom LON">
<option value="Madinah (Medina) - Mohammad Bin Abdulaziz Saudi Arabia MED">
<option value="Madrid - Barajas Airport Spain MAD">
<option value="Milan Italy MIL">
<option value="Nice - Cote D'Azur Airport France NCE">
<option value="Paris France PAR">
<option value="Riyadh - King Khaled International Saudi Arabia RUH">
<option value="Rome Italy ROM">
</datalist>
</p>
<p><label> Destination<input style="width: 50%;" name="destination" type="text" list="destination"></label>
<datalist id="destination">
<option value="Abidjan Cote d'Ivoire ABJ">
<option value="Abu Dhabi - Abu Dhabi International United Arab Emirates AUH">
<option value="Accra - Kotoka International Airport Ghana ACC">
<option value="Amsterdam - Amsterdam Airport Schiphol Netherlands AMS">
<option value="Athens - Elefthérios Venizélos International Airport Greece ATH">
<option value="Basra, Basrah Iraq BSR">
<option value="Beirut - Beirut Rafic Hariri International Airport Lebanon BEY">
<option value="Brussels - Brussels Airport Belgium BRU">
<option value="Cairo - Cairo International Airport Egypt CAI">
<option value="Copenhagen - Copenhagen Airport Denmark CPH">
<option value="Dammam, King Fahad International Saudi Arabien DMM">
<option value="Disneyland Paris France DLP">
<option value="Doha - Doha International Airport Qatar DOH">
<option value="Dubai - Dubai International Airport United Arab Emirates DXB">
<option value="East London South Africa ELS">
<option value="Eriwan (Yerevan, Jerevan) Armenia EVN">
<option value="Frankfurt/Main - Frankfurt Airport (Rhein-Main-Flughafen) Germany FRA">
<option value="Geneva - Geneva-Cointrin International Airport Switzerland GVA">
<option value="Istanbul - Istanbul Atatürk Airport Turkey IST">
<option value="Jeddah - King Abdulaziz International Saudi Arabia JED">
<option value="Kuwait - Kuwait International Kuwait KWI">
<option value="Lagos - Murtala Muhammed Airport Nigeria LOS">
<option value="Larnaca Cyprus LCA">
<option value="London Metropolitan Area United Kingdom LON">
<option value="Madinah (Medina) - Mohammad Bin Abdulaziz Saudi Arabia MED">
<option value="Madrid - Barajas Airport Spain MAD">
<option value="Milan Italy MIL">
<option value="Nice - Cote D'Azur Airport France NCE">
<option value="Paris France PAR">
<option value="Riyadh - King Khaled International Saudi Arabia RUH">
<option value="Rome Italy ROM">
</datalist>
</p>
<p> <label>Shipping Date<input type="date" name="date" />
</label></p>
<p>
<p> <label>Arrival Date<input type="date" name="date" />
</label></p>
<p>
<input type="submit" value="Search">
</p>
</fieldset>
</form> -->
</section>
</body>
</html>