forked from aditya-bhaumik/Pathsphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjobs.html
293 lines (285 loc) · 11.9 KB
/
jobs.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jobs</title>
<!-- Added a favicon -->
<link rel="icon" type="image/x-icon" href="images\pathsphere.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--primary-color:#f4f4f4;
--secondary-color:#333;
}
.darkmode{
--primary-color:#333;
--secondary-color:#f4f4f4;
}
header {
background-color: var(--primary-color);
padding: 20px;
color: var(--secondary-color);
position: sticky;
top: 0;
z-index: 1000;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
nav .logo img {
width: 50px;
margin-right: 10px;
}
.hero {
background-color: #4caf50;
color: var(--secondary-color);
padding: 30px;
text-align: center;
}
.search-bar {
margin: 20px auto;
text-align: center;
position: relative;
}
.search-bar input {
padding: 10px;
width: 300px;
border: 1px solid #ccc;
border-radius: 5px;
}
.search-bar i {
position: absolute;
left: 10px;
top: 10px;
color: #888;
}
.job-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px;
}
.job-item {
border: 1px solid #ccc;
border-radius: 5px;
padding: 15px;
margin: 10px;
width: 300px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: transform 0.3s;
background-color: var(--primary-color);
}
.job-item:hover {
transform: scale(1.05);
}
.job-item h2 {
margin-top: 0;
}
.apply-btn {
display: inline-block;
background-color: #4caf50;
color: var(--secondary-color);
padding: 10px 15px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s;
}
.apply-btn:hover {
background-color: #45a049;
}
.footer-container {
background-color: var(--primary-color);
color: var(--secondary-color);
padding: 20px;
text-align: center;
margin-top: 20px;
}
.footer-list {
margin: 20px 0;
}
.footer-list h3 {
margin-bottom: 10px;
}
.social-icons li {
display: inline;
margin: 0 10px;
}
.copyright {
margin-top: 10px;
}
@media (max-width: 600px) {
.search-bar input {
width: 80%;
}
.job-item {
width: 100%;
}
}
</style>
<script>
// Function to filter jobs based on search input
function filterJobs() {
const input = document.getElementById('searchInput').value.toLowerCase();
const items = document.getElementsByClassName('job-item');
Array.from(items).forEach(item => {
const title = item.getElementsByTagName('h2')[0].textContent.toLowerCase();
if (title.includes(input)) {
item.style.display = '';
} else {
item.style.display = 'none';
}
});
}
// Function to simulate the application process
function applyForJob(jobTitle) {
alert(`You have applied for the ${jobTitle}.`);
}
</script>
</head>
<body>
<header>
<nav>
<a href="index.html" class="logo"><img src="/P (1).png" alt="PathSphere Logo"> PathSphere</a>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="scholarships.html">Scholarships</a></li>
<li><a href="jobs.html">Jobs</a></li>
<li><a href="forum.html">Forum</a></li>
<li><a href="faqs.html">FAQs</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
<img src="images/dark.png" id="icon" alt="">
</nav>
</header>
<main>
<section class="hero">
<h1>Jobs</h1>
<p>Explore job opportunities for educators and professionals.</p>
</section>
<div class="search-bar">
<i class="fas fa-search"></i>
<input type="text" id="searchInput" placeholder="Search for jobs..." aria-label="Search Jobs" onkeyup="filterJobs()">
</div>
<section class="job-list">
<div class="job-item">
<h2>Math Teacher</h2>
<p>Company: ABC High School</p>
<p>Location: New York, NY</p>
<p>Salary: $50,000 - $60,000</p>
<p>Requirements: Bachelor's degree in Education or relevant field.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Math Teacher')">Apply Now</a>
</div>
<div class="job-item">
<h2>Software Engineer</h2>
<p>Company: Tech Innovations Inc.</p>
<p>Location: San Francisco, CA</p>
<p>Salary: $100,000 - $120,000</p>
<p>Requirements: Bachelor's degree in Computer Science and 2+ years of experience.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Software Engineer')">Apply Now</a>
</div>
<div class="job-item">
<h2>Data Analyst</h2>
<p>Company: Data Insights Ltd.</p>
<p>Location: Remote</p>
<p>Salary: $70,000 - $80,000</p>
<p>Requirements: Proficient in SQL and Python, with 1+ years of experience.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Data Analyst')">Apply Now</a>
</div>
<div class="job-item">
<h2>Graphic Designer</h2>
<p>Company: Creative Agency</p>
<p>Location: Austin, TX</p>
<p>Salary: $45,000 - $55,000</p>
<p>Requirements: Portfolio showcasing design skills.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Graphic Designer')">Apply Now</a>
</div>
<div class="job-item">
<h2>Project Manager</h2>
<p>Company: BuildTech Corp.</p>
<p>Location: Chicago, IL</p>
<p>Salary: $90,000 - $110,000</p>
<p>Requirements: 5+ years of experience in project management.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Project Manager')">Apply Now</a>
</div>
<div class="job-item">
<h2>Content Writer</h2>
<p>Company: WriteNow Media</p>
<p>Location: Remote</p>
<p>Salary: $40,000 - $50,000</p>
<p>Requirements: Excellent writing skills and creativity.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Content Writer')">Apply Now</a>
</div>
<div class="job-item">
<h2>Web Developer</h2>
<p>Company: Web Solutions Co.</p>
<p>Location: Los Angeles, CA</p>
<p>Salary: $75,000 - $95,000</p>
<p>Requirements: Strong knowledge of HTML, CSS, JavaScript.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Web Developer')">Apply Now</a>
</div>
<div class="job-item">
<h2>Marketing Specialist</h2>
<p>Company: MarketWise</p>
<p>Location: Miami, FL</p>
<p>Salary: $60,000 - $70,000</p>
<p>Requirements: Experience in digital marketing.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Marketing Specialist')">Apply Now</a>
</div>
<div class="job-item">
<h2>Sales Representative</h2>
<p>Company: SalesPro Inc.</p>
<p>Location: Denver, CO</p>
<p>Salary: $50,000 - $60,000</p>
<p>Requirements: Excellent communication skills.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Sales Representative')">Apply Now</a>
</div>
<div class="job-item">
<h2>Research Scientist</h2>
<p>Company: BioTech Labs</p>
<p>Location: Boston, MA</p>
<p>Salary: $85,000 - $95,000</p>
<p>Requirements: PhD in a related field.</p>
<a href="#" class="apply-btn" onclick="applyForJob('Research Scientist')">Apply Now</a>
</div>
</section>
</main>
<div class="footer-container">
<div class="footer-description">
<h3>PathSphere</h3>
<p>PathSphere is a comprehensive platform designed to connect students with scholarship opportunities and educators with job openings. It features dynamic search tools and community discussions to enhance access to educational and career resources.</p>
</div>
<div class="footer-list">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html" style="color: var(--secondary-color);">Home</a></li>
<li><a href="scholarships.html" style="color: var(--secondary-color);">Scholarships</a></li>
<li><a href="jobs.html" style="color: var(--secondary-color);">Jobs</a></li>
<li><a href="forum.html" style="color: var(--secondary-color);">Forum</a></li>
</ul>
</div>
<div class="footer-list">
<h3>Follow Us On</h3>
<ul class="social-icons">
<li><a href="https://github.com" target="_blank" style="color: var(--secondary-color);"><i class="fab fa-github"></i></a></li>
<li><a href="https://instagram.com" target="_blank" style="color: var(--secondary-color);"><i class="fab fa-instagram"></i></a></li>
<li><a href="https://x.com" target="_blank" style="color: var(--secondary-color);"><i class="fa-brands fa-x-twitter"></i></a></li>
<li><a href="https://facebook.com" target="_blank" style="color: var(--secondary-color);"><i class="fab fa-facebook"></i></a></li>
<li><a href="https://linkedin.com" target="_blank" style="color: var(--secondary-color);"><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="copyright">© 2024 PathSphere. All rights reserved.</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js" integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
</body>
</html>