-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjobs.html
More file actions
87 lines (83 loc) · 2.2 KB
/
Copy pathjobs.html
File metadata and controls
87 lines (83 loc) · 2.2 KB
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
---
layout: default
title: Jobs
permalink: /jobs/
---
<section class="jobs-section">
<div class="jobs-container">
<h1>Find Your Next Role in Data & AI</h1>
<p>Explore curated job boards for Data Analysts, Data Scientists, ML Engineers, and more. Bookmark this page and check back often for fresh leads!</p>
<ul class="job-board-list">
<li><a href="https://www.linkedin.com/jobs/" target="_blank">🔗 LinkedIn Jobs</a></li>
<li><a href="https://www.indeed.com/" target="_blank">🔗 Indeed</a></li>
<li><a href="https://boards.greenhouse.io/" target="_blank">🔗 Greenhouse.io</a></li>
<li><a href="https://jobs.github.com/" target="_blank">🔗 GitHub Jobs</a></li>
<li><a href="https://www.kaggle.com/jobs" target="_blank">🔗 Kaggle Jobs</a></li>
<li><a href="https://remotive.io/" target="_blank">🔗 Remotive (Remote Tech Jobs)</a></li>
</ul>
<div class="submit-job">
<p>Know a great opportunity for our audience?</p>
<a href="/contribute/" class="button">Submit a Job or Internship</a>
</div>
</div>
</section>
<style>
.jobs-section {
padding: 60px 20px;
background-color: #1e1e1e;
color: white;
text-align: center;
}
.jobs-container {
max-width: 800px;
margin: 0 auto;
background: #2a2a2a;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.jobs-container h1 {
color: #4CAF50;
margin-bottom: 15px;
}
.jobs-container p {
color: #ddd;
}
.job-board-list {
list-style: none;
padding: 0;
margin: 30px 0;
text-align: left;
color: white;
}
.job-board-list li {
padding: 8px 0;
font-size: 1.1rem;
}
.job-board-list a {
color: #80d0ff;
text-decoration: none;
font-weight: 500;
}
.job-board-list a:hover {
text-decoration: underline;
}
.submit-job {
margin-top: 30px;
font-size: 1rem;
color: white;
}
.submit-job .button {
display: inline-block;
margin-top: 10px;
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
}
.submit-job .button:hover {
background-color: #388e3c;
}
</style>