-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcareers.html
100 lines (100 loc) · 4.66 KB
/
careers.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
<!DOCTYPE html>
<html>
<head>
<!--Metadata-->
<title>Mercury Airlines | Careers</title>
<meta name="description" content="Join our family to start your career today!">
<meta name="keywords" content="flight, airline, southeast, careers">
<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/wingSunset.jpg" alt="Header Image" class="img-fluid">
<div class="carousel-caption mycaption">
<h1>Start Your Career</h1>
</div>
</div>
<!--Content-->
<div class="container-fluid">
<div class="row">
<div class="col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 content-section divider">
<p>Mercury is proud to employ over 50,000 employees in the nation. Working at Mercury is guaranteed to provide you with, not only an astounding work environment, but also an unforgettable work experience that will carry with you forever. Mercury is also proud to offer its employees some of the most comprehensive benefits in the airline business.</p>
</div>
<div class="col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 content-section divider">
<h2>Application Requirments:</h2>
<ol>
<li>Must be 18 years or older to apply</li>
<li>High School Diploma or equivilant</li>
<li>Capablity to lift up to 20 lbs. if needed</li>
</ol>
</div>
<div class="col-xs-10 col-xs-offset-1 col-md-8 col-md-offset-2 content-section">
<h2>Application Process:</h2>
<ol>
<li>Ensure you meet all of the job requirments</li>
<li>Submit your: Name, Email, Phone Number, and your Resume/Cover Letter</li>
<li>Check your email in 2-3 weeks to check your application status</li>
</ol>
<div class="callToAction">
<a href="apply.html">
<h3>Apply Today</h3>
</a>
</div>
<br>
</div>
</div>
</div>
<!--Footer-->
<footer class="container-fluid">
<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>