forked from saismrutiranjan18/Tiffin_Fusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork_with_us.html
117 lines (103 loc) · 5.02 KB
/
work_with_us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Work With Us - Tiffin Fusion</title>
<link rel="stylesheet" href="work_with_us.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./Utils/20240921_154411.png" type="image/x-ixon">
</head>
<body>
<nav class="navbar bg-light border-bottom border-body navbar-expand-lg">
<div class="container-fluid">
<!-- Logo -->
<a class="navbar-brand text-black" href="#">
<img src="Utils/20240921_154411.png" alt="Tiffin Fusion Logo" style="height: 40px; margin-right: 8px;">
Tiffin Fusion
</a>
<!-- Mobile Toggler -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar Links -->
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<!-- Home Link -->
<li class="nav-item">
<a class="nav-link mx-2" href="#home">Home</a>
</li>
<!-- View Menu Link -->
<li class="nav-item">
<a class="nav-link mx-2" href="#menu-section">View Menu</a>
</li>
<!-- Meal Plan Dropdown -->
<li class="nav-item dropdown meal-plan">
<a class="nav-link mx-2" href="#" id="mealPlanToggle" role="button" aria-expanded="false">
Meal Plans
</a>
<ul class="dropdown-menu" id="mealPlanMenu">
<li><a class="dropdown-item" href="#student-plan">Student Plan</a></li>
<li><a class="dropdown-item" href="corporateplans.html">Corporate Plan</a></li>
<li><a class="dropdown-item" href="dailyplans.html">Daily Plan</a></li>
</ul>
</li>
<!-- About Link -->
<li class="nav-item">
<a class="nav-link mx-2" href="#who-we-are">About</a>
</li>
<!-- Contact Us Link -->
<li class="nav-item">
<a class="nav-link mx-2" href="#contact-us">Contact Us</a>
</li>
<!-- Contributors Link -->
<li class="nav-item">
<a href="./contributors/contributor.html" class="nav-link mx-2">Contributors</a>
</li>
<!-- Sign In Link -->
<li class="nav-item">
<a href="signin.html" class="nav-link mx-2">Sign In</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<section class="intro">
<h1>Join the Tiffin Fusion Team</h1>
<p>At Tiffin Fusion, we are always looking for passionate individuals who share our love for food and innovation. Whether you're a culinary genius, a marketing expert, or a tech enthusiast, we want to hear from you.</p>
</section>
<section class="cta">
<h2>Why Work With Us?</h2>
<p>By joining us, you'll be part of a dynamic team, working towards bringing fresh, innovative solutions to the food industry. We're more than just a company — we're a family.</p>
<a href="mailto:careers@tiffinfusion.com" class="cta-button">Apply Now</a>
</section>
<section class="job-listing">
<h2>Current Openings</h2>
<ul>
<li>
<h3>Culinary Specialist</h3>
<p>Bring your creative culinary skills to our team and help us create delicious, innovative dishes.</p>
<a href="mailto:careers@tiffinfusion.com" class="apply-link">Apply Now</a>
</li>
<li>
<h3>Marketing Manager</h3>
<p>Help us spread the word about Tiffin Fusion. We need a creative and motivated individual to manage our marketing campaigns.</p>
<a href="mailto:careers@tiffinfusion.com" class="apply-link">Apply Now</a>
</li>
<li>
<h3>Technical Lead</h3>
<p>If you're a tech enthusiast with experience leading teams, we'd love to have you on board to help us shape the future of food tech.</p>
<a href="mailto:careers@tiffinfusion.com" class="apply-link">Apply Now</a>
</li>
</ul>
</section>
</main>
<footer>
<p>© 2025 Tiffin Fusion. All rights reserved.</p>
</footer>
>
</body>
</html>