-
Notifications
You must be signed in to change notification settings - Fork 0
/
view_job.html
97 lines (91 loc) · 4.27 KB
/
view_job.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="seahorse png.png">
<title>View Position</title>
</head>
<body>
<header class="header">
<section class="flex">
<div id="menu-btn" class="fas fa-bars-staggered"></div>
<a href="index.html" class="logo"><i class="fas fa-briefcase"></i>Kaiba Job Portal</a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="jobs.html">Job Listings</a>
<a href="contact.html">Contact Us</a>
<a href="about.html">About Us</a>
</nav>
<a href="apply.html" class="btn" style="margin-top: 0;">Apply Now!</a>
</section>
</header>
<section class="job-details">
<h1 class="heading">Job Details</h1>
<div class="details">
<div class="job-info">
<h3>Cashier</h3>
<p><i class="fas fa-map-marker-alt"></i> Anaheim</p>
</div>
<div class="description">
<p>It is Kaiba's purpose to impress our customers, inspire our people, and impact our community.</p>
<p>The primary role of our Team Members is to ensure customer satisfaction by performing various tasks within our restaurant including product transactions, cleaning, and excellent service for our customers.</p>
</div>
<div class="basic-details">
<h3>Salary:</h3>
<p>$18-20/Hour</p>
<h3>Benefits:</h3>
<p>Flexible shifts, healthcare coverage, retirement contributions, employe discounts</p>
<h3>Job Type:</h3>
<p>Part-time</p>
</div>
<ul>
<h3>Responsibilities:</h3>
<li>Communicate with customers and take orders</li>
<li>Manage order transactions between the company and the customers</li>
<li>Communicate with other crew members and managers</li>
</ul>
<ul>
<h3>Requirements:</h3>
<li>Must be 16 years of age or older</li>
<li>Basic math skills</li>
<li>Attention to detail</li>
<li>Prior service experience preferred</li>
</ul>
<h3>Join the team now! Many opportunities await.</h3>
<div class="apply">
<a href="apply.html" class="btn">Apply Now!</a>
</div>
</div>
</section>
<footer class="footer">
<section class="grid">
<div class="box">
<h3>Quick Links</h3>
<a href="index.html"><i class="fas fa-angle-right"></i> Home</a>
<a href="about.html"><i class="fas fa-angle-right"></i> About</a>
<a href="jobs.html"><i class="fas fa-angle-right"></i> Job Listings</a>
<a href="contact.html"><i class="fas fa-angle-right"></i> Contact Us</a>
<a href="apply.html"><i class="fas fa-angle-right"></i> Apply Now!</a>
</div>
<div class="box">
<h3>Locations</h3>
<a href="about.html"><i class="fas fa-angle-right"></i> Anaheim</a>
<a href="about.html"><i class="fas fa-angle-right"></i> Monterey Park</a>
<a href="about.html"><i class="fas fa-angle-right"></i> Pasadena</a>
</div>
<div class="box">
<h3>Follow Us!</h3>
<a href="#"><i class="fab fa-facebook-f"></i> Facebook</a>
<a href="#"><i class="fab fa-twitter"></i> X (Twitter)</a>
<a href="#"><i class="fab fa-instagram"></i> Instagram</a>
<a href="#"><i class="fab fa-linkedin"></i> LinkedIn</a>
<a href="#"><i class="fa-brands fa-yelp"></i> Yelp</a>
</div>
</section>
<div class="credit">© Copyright @2024 By <span>Kaiba Japanese Ramen, Sushi & Grill</span> | All Rights Reserved</div>
</footer>
<script src="script.js"></script>
</body>
</html>