-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 2.52 KB
/
index.html
File metadata and controls
66 lines (59 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Internship Opportunity | Developer Quest</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap" rel="stylesheet">
</head>
<body>
<button id="theme-toggle" class="theme-btn" aria-label="Toggle Theme">
<span class="icon-sun">☀️ Light Mode</span>
<span class="icon-moon">🌙 Dark Mode</span>
</button>
<div class="stars"></div>
<main class="content-card">
<header>
<div class="badge">HIRING: INTERN 2026</div>
<h1>Launch Your Career as a <br><span class="highlight">Junior Developer Intern</span></h1>
<p class="subtitle">A 7-day challenge to prove your skills and join our engineering team.</p>
</header>
<div class="info-section">
<div class="perks-grid">
<div class="perk-card">
<h3>💻 Tech Stack</h3>
<p>Python, JS, React & TypeScript</p>
</div>
<div class="perk-card">
<h3>📜 Perks</h3>
<p>Certificate & Mentorship</p>
</div>
</div>
<section class="requirements">
<h3>What we're looking for:</h3>
<ul>
<li>✅ Strong basics in HTML, CSS, and Python.</li>
<li>✅ Ability to build and commit code to GitHub.</li>
<li>✅ Curiosity to learn modern AI-driven development.</li>
</ul>
</section>
<div class="action-zone">
<p class="stipend-note">Note: This is a learning-first internship with a performance-based stipend.</p>
<a href="https://github.com/recursivezero/career/issues/new?template=Internship_Application.yml" class="apply-btn">
Apply on GitHub & Start Challenge
</a>
</div>
</div>
</main>
<script>
const btn = document.getElementById('theme-toggle');
const html = document.documentElement;
btn.addEventListener('click', () => {
const current = html.getAttribute('data-theme');
const next = current === 'dark' ? 'light' : 'dark';
html.setAttribute('data-theme', next);
});
</script>
</body>
</html>