This repository has been archived by the owner on Oct 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 371
/
job-listing.html
536 lines (523 loc) · 19.8 KB
/
job-listing.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KeiKo-Corp-Job-Listing</title>
<link rel="stylesheet" href="./assets/global.css" />
<link rel="stylesheet" href="./assets/css/job-listing.css" />
<link
rel="shortcut icon"
href="./assets/images/favicon_io/favicon.ico"
type="image/x-icon"
/>
<link rel="stylesheet" href="./assets/css/nav-styles.css" />
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/css/scroll-bar.css" />
<link rel="stylesheet" href="./assets/css/footer.css" />
</head>
<body class="main">
<!-- HEADER -->
<header class="no-user-select">
<!-- sticky header -->
<div class="container-nav">
<img
src="./assets/images/keiko-logo.png"
class="logo"
alt="Keiko Corp"
/>
<nav class="navbar">
<label class="toggle-bar-mobile" id="toggle-bar">
<input
type="checkbox"
id="toggle-checkbox"
aria-label="Toggle Switch"
/>
<span class="slider round" id="slider-round"></span>
</label>
<div class="nav-button">
<span></span>
<span></span>
<span></span>
</div>
<ul class="menu">
<li>
<!-- <img src="./assets/images/keiko-logo.png" class="logo" alt="Keiko Corp" /> -->
</li>
<li>
<a href="#">
<button id="home">Home</button>
</a>
</li>
<li>
<a href="#feature">
<button id="contact-btn" role="button" aria-label="Features">
Features
</button>
</a>
</li>
<li>
<a href="#testimonials">
<button
id="contact-btn"
role="button"
aria-label="Testimonials"
>
Testimonials
</button>
</a>
</li>
<li class="menu-team">
<a href="./meet-the-team.html">
<button id="contact-btn" role="button" aria-label="Team">
Team
</button>
</a>
</li>
<li class="menu-price">
<a href="#pricing">
<button id="contact-btn" role="button" aria-label="Pricing">
Pricing
</button>
</a>
</li>
<!-- dropdown btn -->
<div
class="dropdown"
role="navigation"
aria-label="More Menu Items"
>
<button class="dropbtn">
More<i class="fas fa-caret-down" id="caret-down"></i>
</button>
<div class="dropdown-content">
<a class="drop-team" href="./meet-the-team.html">Team</a>
<a class="drop-price" href="#pricing">Pricing</a>
<a href="about.html">About</a>
<a href="blog.html">Blog</a>
<a href="job-listing.html">Job Listings</a>
<a href="support.html">Support</a>
<a href="./privacy-policy.html">Privacy Policy</a>
<a href="faq.html">FAQ</a>
</div>
</div>
<!-- end of dropdown btn -->
<!-----------------Toggle Button for Dark Mode---------------- -->
<label class="toggle-bar" id="toggle-bar">
<input
type="checkbox"
id="toggle-checkbox"
aria-label="Toggle Switch"
/>
<span class="slider round" id="slider-round"></span>
</label>
<!-- --------------------------------------- -->
<div class="user-forms">
<a href="./contact.html">
<button
class="red-btn"
id="contact-btn"
role="button"
aria-label="Contact"
>
Contact
</button>
</a>
<a href="./login.html">
<button
class="red-btn"
id="contact-btn"
role="button"
aria-label="Login"
>
Login
</button>
</a>
</div>
</ul>
</nav>
</div>
</header>
<main>
<section class="hero-image"></section>
<section class="job-posts">
<h2>Looking for Talented Professionals</h2>
<h1>
Current Job Listings at Keiko Corp
<span>
<img src="./assets/images/keiko-logo.png" alt="Keiko Corp logo" />
</span>
</h1>
</section>
<section class="job-posting-info">
<table class="table-auto" id="large-table-display">
<thead>
<tr>
<th class="px-4 py-2">Job Title</th>
<th class="px-4 py-2">Description</th>
<th class="px-4 py-2">Salary</th>
<th class="px-4 py-2">Location</th>
<th class="px-4 py-2">Start Date</th>
<th class="px-4 py-2">Work Length</th>
</tr>
</thead>
<tbody>
<!-- Job #1 -->
<tr>
<td class="border px-4 py-2">Front End Engineer</td>
<td class="border px-4 py-2">
Working with clients to develop the overall look and design of a
website.<br />
Writing website code with programming languages such as HTML,
CSS and Javascript.<br />
Fixing any website issues or bugs that arise<br />
Experience using modern Javascript frameworks like React, Vue,
etc...
</td>
<td class="border px-4 py-2">$70,000 - $75,000</td>
<td class="border px-4 py-2">Silicon Valley, CA</td>
<td class="border px-4 py-2">Immediate</td>
<td class="border px-4 py-2">6 month contract</td>
</tr>
<!-- Job #2 -->
<tr>
<td class="border px-4 py-2">Full Stack Developer</td>
<td class="border px-4 py-2">
Developing Web-based applications using the MERN stack,
including React.js, Node.js, and MongoDB.<br />
Creating RESTful services with Node.js.<br />
Creating unit tests using Jest and developing integration
tests.<br />
Integrating user-facing elements with server-side logic.
</td>
<td class="border px-4 py-2">$110,000</td>
<td class="border px-4 py-2">Silicon Valley, CA</td>
<td class="border px-4 py-2">October 10, 2020</td>
<td class="border px-4 py-2">Full Time</td>
</tr>
<!-- Job #3 -->
<tr>
<td class="border px-4 py-2">Front End Designer</td>
<td class="border px-4 py-2">
Develop new user-facing features<br />
Ensure the technical feasibility of UI/UX designs<br />
Experience using design tools such as Figma, Adobe XD,
etc....<br />
Knowledge of CSS preprocessor such as Sass and Less
</td>
<td class="border px-4 py-2">$67,000</td>
<td class="border px-4 py-2">Silicon Valley, CA</td>
<td class="border px-4 py-2">ASAP</td>
<td class="border px-4 py-2">Contract to Perm</td>
</tr>
<!-- Job #4 -->
<tr>
<td class="border px-4 py-2">Data Scientist</td>
<td class="border px-4 py-2">
Build large and complex information sets; <br />Integrates and
extracts relevant information from large amounts of both<br />
structured and unstructured data (internal and external)to
enable analytical solutions.<br />
Provides input into the creation of detailed project plans, work
assignments, <br />target dates and other aspects of assigned
projects. Ad hoc reporting and analytics to support<br />
requests from the Bank's various lines of business.<br />
Develop and manage analysis and algorithms that generate
actionable insights and programs <br />to improve long-term
revenue and relevance.
</td>
<td class="border px-4 py-2">$95,000 - $100,000</td>
<td class="border px-4 py-2">Silicon Valley, CA</td>
<td class="border px-4 py-2">November 1, 2020</td>
<td class="border px-4 py-2">Long Term Contract</td>
</tr>
<!-- Job #5 -->
<tr>
<td class="border px-4 py-2">System Admin</td>
<td class="border px-4 py-2">
Responsible to manage and maintain a large Windows Servers
installation running on VMware.<br />
Incorporate information security best practices in all aspects
of Systems Management.<br />
Knowledge of Linux and Ubuntu OS is a plus.<br />
Training of staff members within and without the Systems
Administration Department
</td>
<td class="border px-4 py-2">$45,000 - $55,000</td>
<td class="border px-4 py-2">Silicon Valley, CA</td>
<td class="border px-4 py-2">Immediate</td>
<td class="border px-4 py-2">Full Time</td>
</tr>
</tbody>
</table>
</section>
<!-- mobile only -->
<div
class="max-w-sm rounded overflow-hidden shadow-lg bg-gray-100"
id="mobile-table"
>
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Front End Engineer</div>
<p class="text-gray-700 text-base"></p>
<div class="font-bold text-xl mb-2">Job Description</div>
<ul>
<li>
Working with clients to develop the overall look and design of a
website.
</li>
<li>
Writing website code with programming languages such as HTML, CSS
and Javascript.
</li>
<li>Fixing any website issues or bugs that arise</li>
<li>
Experience using modern Javascript frameworks like React, Vue,
etc...
</li>
</ul>
<div class="font-bold text-xl mb-2 mt-2">Salary</div>
<p>$70,000 - $75,000</p>
<div class="font-bold text-xl mb-2 mt-2">Location</div>
<p>Silicon Valley, CA</p>
<div class="font-bold text-xl mb-2 mt-2">Start Date</div>
<p>Immediate</p>
<div class="font-bold text-xl mb-2 mt-2">Work Length</div>
<p>6 month contract</p>
</div>
</div>
<!-- mobile job #2 -->
<div
class="max-w-sm rounded overflow-hidden shadow-lg bg-gray-100 mt-4 mb-4"
id="mobile-table"
>
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Full Stack Developer</div>
<p class="text-gray-700 text-base"></p>
<div class="font-bold text-xl mb-2">Job Description</div>
<ul>
<li>
Developing web-based applications using the MERN stack, including
React.js, Node.js, and MongoDB.
</li>
<li>Creating RESTful services with Node.js.</li>
<li>
Creating unit tests using Jest and developing integration tests.
</li>
<li>Integrating user-facing elements with server-side logic.</li>
</ul>
<div class="font-bold text-xl mb-2 mt-2">Salary</div>
<p>$110,000</p>
<div class="font-bold text-xl mb-2 mt-2">Location</div>
<p>Silicon Valley, CA</p>
<div class="font-bold text-xl mb-2 mt-2">Start Date</div>
<p>Octobe 10, 2020</p>
<div class="font-bold text-xl mb-2 mt-2">Work Length</div>
<p>Full Time</p>
</div>
</div>
<!-- mobile job #3 -->
<div
class="max-w-sm rounded overflow-hidden shadow-lg bg-gray-100 mt-4 mb-4"
id="mobile-table"
>
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Front End Designer</div>
<p class="text-gray-700 text-base"></p>
<div class="font-bold text-xl mb-2">Job Description</div>
<ul>
<li>Develop new user-facing features.</li>
<li>Ensure the technical feasibility of UI/UX designs</li>
<li>
Experience using design tools such as Figma, Adobe XD, etc....
</li>
<li>Knowlegde of CSS preprocessor such as Sass and Less</li>
</ul>
<div class="font-bold text-xl mb-2 mt-2">Salary</div>
<p>$67,000</p>
<div class="font-bold text-xl mb-2 mt-2">Location</div>
<p>Silicon Valley, CA</p>
<div class="font-bold text-xl mb-2 mt-2">Start Date</div>
<p>ASAP</p>
<div class="font-bold text-xl mb-2 mt-2">Work Length</div>
<p>Contract to Perm</p>
</div>
</div>
<!-- mobile job #4 -->
<div
class="max-w-sm rounded overflow-hidden shadow-lg bg-gray-100 mt-4 mb-4"
id="mobile-table"
>
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">Data Scientist</div>
<p class="text-gray-700 text-base"></p>
<div class="font-bold text-xl mb-2">Job Description</div>
<ul>
<li>
Build large and complex information sets; Integrates and extracts
relevant information from large amounts of both structured and
unstructured data(internal and external) to enable analytical
solutions.
</li>
<li>
Provides input into the creation of detailed project plans, work
assignments, target dates and other aspects of assigned projects.
</li>
<li>
Ad hoc reporting and analytics to support requests from the Bank's
various lines of business.
</li>
<li>
Develop and manage analysis and algorithms that generate
actionable insights and programs to improve long-term revenue and
relevance.
</li>
</ul>
<div class="font-bold text-xl mb-2 mt-2">Salary</div>
<p>$95,000 - $100,000</p>
<div class="font-bold text-xl mb-2 mt-2">Location</div>
<p>Silicon Valley, CA</p>
<div class="font-bold text-xl mb-2 mt-2">Start Date</div>
<p>November 1, 2020</p>
<div class="font-bold text-xl mb-2 mt-2">Work Length</div>
<p>Long Term Contract</p>
</div>
</div>
<!-- mobile job # 5 -->
<div
class="max-w-sm rounded overflow-hidden shadow-lg bg-gray-100 mt-4 mb-4"
id="mobile-table"
>
<div class="px-6 py-4">
<div class="font-bold text-xl mb-2">System Admin</div>
<p class="text-gray-700 text-base"></p>
<div class="font-bold text-xl mb-2">Job Description</div>
<ul>
<li>
Responsible to manage and maintain a large Windows Servers
installation running on VMware.
</li>
<li>
Incorporate information security best practices in all aspects of
Systems Management.
</li>
<li>Knowledge of Linux and Ubuntu OS is a plus.</li>
<li>
Training of staff members within and without the Systems
Administration Department
</li>
</ul>
<div class="font-bold text-xl mb-2 mt-2">Salary</div>
<p>$45,000 - $55,000</p>
<div class="font-bold text-xl mb-2 mt-2">Location</div>
<p>Silicon Valley, CA</p>
<div class="font-bold text-xl mb-2 mt-2">Start Date</div>
<p>Immediate</p>
<div class="font-bold text-xl mb-2 mt-2">Work Length</div>
<p>Full Time</p>
</div>
</div>
<!-- Footer -->
<footer>
<div class="footer-row">
<section class="footer-column">
<h2>Group 1</h2>
<div class="sub-footer-link" role="link">
<a href="index.html">Home</a>
<a href="index.html#feature">Features</a>
<a href="index.html#pricing">Pricing</a>
<a href="meet-the-team.html">Team</a>
<a href="contact.html">Contact Us</a>
</div>
</section>
<section class="footer-column">
<h2>Group 2</h2>
<div class="sub-footer-link" role="link">
<a href="./privacy-policy.html">Privacy Policy</a>
<a href="terms">Terms</a>
<a href="./faq.html">FAQ</a>
<a href="./support.html">Support</a>
</div>
</section>
<section class="footer-column">
<h2>About Us</h2>
<div>
Keiko Corp. the greatest start up of all time Bruno the CEO of
Keiko Corp has built the fastest growing tech start up in Silicon
Valley.
</div>
</section>
<section class="footer-column">
<h2>Follow Us</h2>
<ul class="">
<li class="">
<a href="#"
><img
src="https://img.icons8.com/android/24/000000/twitter.png"
/></a>
</li>
<li class="">
<a href="#"
><img
src="https://img.icons8.com/android/24/000000/facebook-new.png"
/></a>
</li>
<li class="">
<a href="#"
><img
src="https://img.icons8.com/metro/26/000000/instagram-new.png"
/></a>
</li>
<li class="">
<a href="#"
><img
src="https://img.icons8.com/ios-filled/24/000000/pinterest--v1.png"
/></a>
</li>
<li class="">
<a href="#"
><img
src="https://img.icons8.com/ios-glyphs/24/000000/google-logo--v2.png"
/></a>
</li>
</ul>
</section>
<!-- Scroller -->
<a href="#top"
><i
class="fa fa-2x fa-arrow-up"
style="
position: fixed;
bottom: 30px;
right: 30px;
color: #fd6565;
box-shadow: 0 2px 10px 0 #0e0e0e;
border: 1px solid #242424;
border-radius: 50%;
background-color: #242424;
height: 50px;
width: 50px;
padding: 10px;
"
aria-hidden="true"
></i
></a>
</div>
<section id="sub-footer">
<p>
©
<script>
document.write(new Date().getFullYear());
</script>
Keiko Corp . All Rights Reserved
</p>
</section>
</footer>
</main>
<!-- <script src="assets\js\set-mode.js"></script> -->
<script src="./assets/js/dark-mode.js"></script>
<script src="./assets/js/navbar.js"></script>
</body>
</html>