forked from evalis-AI/evalis-ai.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcareers.html
More file actions
306 lines (259 loc) · 6.79 KB
/
careers.html
File metadata and controls
306 lines (259 loc) · 6.79 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Contributors | Evalis AI</title>
<link rel="icon" type="image/png" href="favicon-96x96.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="Favicon-96x96.png" sizes="96x96">
<meta name="robots" content="index, follow" />
<meta name="description" content="Join Evalis AI as an independent contributor. Work on AI data evaluation, data labeling, search relevance, and language quality projects." />
<style>
:root {
--primary: #5b5bff;
--secondary: #7c7cff;
--bg: #070b18;
--card: rgba(255,255,255,0.04);
--border: rgba(255,255,255,0.12);
--text: #e5e7eb;
--muted: #9aa4b2;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
background: radial-gradient(circle at top, #0b1230, #050814);
color: var(--text);
line-height: 1.6;
}
/* NAV */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 28px;
background: rgba(0,0,0,0.5);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 10;
}
nav .logo {
font-weight: 700;
font-size: 20px;
color: #fff;
}
nav a {
color: #c7d2fe;
text-decoration: none;
margin-left: 18px;
font-size: 14px;
}
nav a:hover {
color: #fff;
}
/* HERO */
.hero {
padding: 100px 20px 70px;
text-align: center;
}
.hero h1 {
font-size: 42px;
margin-bottom: 12px;
}
.hero p {
max-width: 800px;
margin: 0 auto;
color: var(--muted);
font-size: 17px;
}
/* INFO CARDS */
.info {
max-width: 1100px;
margin: 0 auto 80px;
padding: 0 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
}
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 18px;
padding: 28px;
}
.card h3 {
margin-bottom: 10px;
font-size: 20px;
}
.card p {
color: var(--muted);
font-size: 15px;
}
/* FORM */
.form-section {
max-width: 900px;
margin: 0 auto 100px;
padding: 40px 20px;
}
.form-box {
background: var(--card);
border: 1px solid var(--border);
border-radius: 20px;
padding: 40px;
}
.form-box h2 {
text-align: center;
font-size: 32px;
margin-bottom: 10px;
}
.form-box p {
text-align: center;
color: var(--muted);
font-size: 14px;
margin-bottom: 30px;
}
form {
display: flex;
flex-direction: column;
gap: 16px;
}
.row {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
input, select, textarea {
width: 100%;
padding: 14px 16px;
border-radius: 12px;
border: 1px solid var(--border);
background: rgba(0,0,0,0.45);
color: #fff;
font-size: 15px;
}
textarea {
min-height: 120px;
resize: vertical;
}
input::placeholder, textarea::placeholder {
color: #9aa4b2;
}
button {
padding: 16px;
border-radius: 14px;
border: none;
font-size: 16px;
font-weight: 600;
color: #fff;
background: linear-gradient(135deg, var(--primary), var(--secondary));
cursor: pointer;
}
button:hover {
opacity: 0.9;
}
.disclaimer {
font-size: 13px;
color: #9aa4b2;
text-align: center;
margin-top: 10px;
}
footer {
text-align: center;
padding: 30px 15px;
font-size: 13px;
color: var(--muted);
border-top: 1px solid var(--border);
}
footer a {
color: #a5b4fc;
text-decoration: none;
}
</style>
</head>
<body>
<nav>
<div class="logo">Evalis AI</div>
<div>
<a href="index.html">Home</a>
<a href="services.html">Services</a>
<a href="about.html">About</a>
<a href="careers.html">Contributors</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<section class="hero">
<h1>Join Evalis AI as a Contributor</h1>
<p>
Work independently on AI data evaluation, data labeling, search relevance,
and language quality projects. Flexible, skill-based, and project-driven.
</p>
</section>
<section class="info">
<div class="card">
<h3>Who Can Apply</h3>
<p>
AI evaluators, data labelers, search quality raters,
language specialists, and content reviewers.
</p>
</div>
<div class="card">
<h3>How It Works</h3>
<p>
Register once → Qualification review → Project matching → Paid per project.
</p>
</div>
<div class="card">
<h3>Work Model</h3>
<p>
Remote, independent, non-exclusive, and task-based.
This is not employment or recruitment.
</p>
</div>
</section>
<section class="form-section">
<div class="form-box">
<h2>Contributor Registration</h2>
<p>
Submit your details once. We’ll contact you when suitable projects are available.
</p>
<form action="https://formspree.io/f/YOURENDPOINT" method="POST">
<div class="row">
<input type="text" name="name" placeholder="Full Name" required>
<input type="email" name="email" placeholder="Email Address" required>
</div>
<div class="row">
<select name="primary_skill" required>
<option value="">Primary Skill Area</option>
<option>AI Data Evaluation</option>
<option>Data Labeling / Annotation</option>
<option>Search Engine Evaluation</option>
<option>Language & Content Review</option>
<option>Speech / Audio Evaluation</option>
</select>
<select name="experience" required>
<option value="">Experience Level</option>
<option>Beginner</option>
<option>Intermediate</option>
<option>Advanced</option>
</select>
</div>
<input type="text" name="languages" placeholder="Languages Known (e.g. English, Hindi, Malayalam)">
<textarea name="about" placeholder="Briefly describe your skills or relevant experience" required></textarea>
<button type="submit">Submit Registration</button>
<p class="disclaimer">
By submitting this form, you acknowledge that this is independent,
project-based contributor work and not an employment offer.
</p>
</form>
</div>
</section>
<footer>
© 2025 Evalis AI · Human-Led AI Data Services<br>
Contact: <a href="mailto:evalisglobal@gmail.com">evalisglobal@gmail.com</a>
</footer>
</body>
</html>