-
Notifications
You must be signed in to change notification settings - Fork 1
/
bookingThanks.html
80 lines (80 loc) · 3.62 KB
/
bookingThanks.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
<!DOCTYPE html>
<html>
<head>
<!--Metadata-->
<title>Mercury Airlines | Continue Booking</title>
<meta name="description" content="Check your email for the next step.">
<meta name="keywords" content="flight, airline, southeast">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="images/small_logo.ico" />
<!--Stylesheets and other imports (Bootstrap, Font Awesome)-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/6d5deef8bf.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<head>
<body>
<!--Navbar-->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">
<img src="images/full-logo.png">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li><a href="flights.html">Book A Flight</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="membership.html">Mercury Miles</a></li>
</ul>
</div>
</div>
</nav>
<!--Header Image-->
<div class="headerImg">
<img src="images/runway.jpg" alt="Header Image" class="img-fluid">
<div class="carousel-caption mycaption">
<h1>Continue Booking Your Flight</h1>
</div>
</div>
<div class="container-fluid smallBody">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 content-section">
<br>
<p>Check your email! We have sent you the information required to continue booking your flight.</p>
<p>If you have any questions, please <a href="about.html">contact us</a>.</p>
</br>
</div>
</div>
</div>
<!--Footer-->
<footer class="container-fluid smallfooter">
<div class="row">
<div class="col-md-4">
<p>Images are from <a href="https://unsplash.com/">Unsplash</a>. View our collection <a href="https://unsplash.com/collections/9268045/mercury-airlines-fbla-2020">here</a></p>
<p>Social Media icons are from <a href="https://fontawesome.com/">Font Awesome</a></p>
</div>
<div class="col-md-4">
<p>Copyright 2020 Hertiage High School Sourcerers</p>
<p><a href="about.html">Contact us</a> if you have any questions</p>
</div>
<div class="col-md-4 socials">
<a href="https://www.facebook.com/"><span><i class="fab fa-facebook"></i></span></a>
<a href="https://twitter.com/"><span><i class="fab fa-twitter"></i></span></a>
<a href="https://www.instagram.com/"><span><i class="fab fa-instagram"></i></span></a>
<a href="https://www.youtube.com/"><span><i class="fab fa-youtube"></i></span></a>
</div>
</div>
</footer>
<body>
</html>