-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployment.html
90 lines (84 loc) · 3.71 KB
/
employment.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Cade's Food Fusion</title>
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css"
/>
<!-- jQuery library -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
<!-- Popper JS -->
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="styles/fusionStyles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
crossorigin="anonymous"
/>
</head>
<body>
<!-- Header Section -->
<div class="row">
<header class="col-sm-12">
<img class="img-center" src="images/pagelogo.png" alt="Logo" width="250" />
<h1 class="text-center">Job Opportunities</h1>
</header>
</div>
<!-- Navigation Section -->
<nav class="row navbar navbar-expand-sm bg-primary justify-content-center">
<li class="col-sm-1 text-center"> </li>
<li class="col-sm-1 text-center"><a href="index.html">Home</a></li>
<li class="col-sm-1 text-center"><a href="about.html">About Us</a></li>
<li class="col-sm-1 text-center"><a href="breakfast.html">Breakfast</a></li>
<li class="col-sm-1 text-center"><a href="lunch.html">Lunch</a></li>
<li class="col-sm-1 text-center"><a href="dinner.html">Dinner</a></li>
<li class="col-sm-1 text-center"><a href="extras.html">Appetizers</a></li>
<li class="col-sm-1 text-center"><a href="locations.html">Locations</a></li>
<li class="col-sm-1 text-center"><a href="contact.html">Contact Us</a></li>
<li class="col-sm-1 text-center"><a href="events.html">Events</a></li>
<li class="col-sm-1 text-center"><a href="order.html">Order</a></li>
<li class="col-sm-1 text-center"> </li>
</nav>
<!-- Content Section -->
<main>
<div>
<img src="images/prepcook.png" alt="Prep Cook" width="300" />
<h4>Prep Cook</h4>
<p>
This position assist the head chef and must have experience preparing Asian food to
include prep of handmade dumplings, bilingual in Chinese is helpful.
</p>
<p>The prep cook arrives early to prepare all the necessarily items for all entrees.</p>
</div>
<div>
<img src="images/waitstaff.jpg" alt="Wait Staff" width="300" />
<h4>Wait Staff</h4>
<p>This position is responsible for taking orders and serving the guest while dining.</p>
<p>The wait staff must be able to explain all menu items and offer suggestions to guest.</p>
</div>
</main>
<!-- Footer Section -->
<footer>
<div class="row">
<li class="col-sm-6 text-right"><a href="survey.html">Help Us Serve You Better</a></li>
<li class="col-sm-6 text-left"><a href="employment.html">Job Opportunities</a></li>
</div>
<div class="row">
<p class="col-sm-12 text-center">Cade's Food Fusion © 2022</p>
</div>
<div class="text-center">
<a href="#"><i class="fas fa-clock"></i></a>
<a href="#"><i class="fas fa-coffee"></i></a>
<a href="#"><i class="fas fa-bread-slice"></i></a>
<a href="#"><i class="fas fa-bowling-ball"></i></a>
</div>
</footer>
</body>
</html>