forked from PriyaGhosal/SkillWise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
careers.html
192 lines (176 loc) · 8.24 KB
/
careers.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SkillWise Internship Opportunities</title>
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<!-- Custom font link -->
<link rel="stylesheet" href="./assets/font/font.css">
<!-- Custom CSS link -->
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/career.css">
<!-- Preload images -->
<link rel="preload" as="image" href="./assets/images/hero-bg.png">
<!-- Animation on Scroll -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-- menu icon link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" />
</head>
<body style="background-image: url('./assets/images/hero-bg.png');">
<!-- Navbar -->
<header class="header" data-header>
<div class="container">
<a href="./index.html">
<img src="./assets/images/Skillwise_logo.jpg" width="50" height="10" alt="SkillWise home">
</a>
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a>
<img src="./assets/images/Skillwise_logo.jpg" width="50" height="10" alt="SkillWise home">
</a>
<button class="nav-close-btn" aria-label="close menu" data-nav-toggler>
<i class="fa-solid fa-xmark"></i>
</button>
</div>
<ul class="navbar-list">
<li class="navbar-item">
<a href="./index.html" class="navbar-link title-sm" data-nav-link>Home</a>
</li>
<li class="navbar-item">
<a href="./index.html#courses" class="navbar-link title-sm" data-nav-link>Courses</a>
</li>
<li class="navbar-item">
<a href="./index.html#blog" class="navbar-link title-sm" data-nav-link>Blog</a>
</li>
<li class="navbar-item">
<a href="./index.html#contact" class="navbar-link title-sm" data-nav-link>Contacts</a>
</li>
<li class="navbar-item">
<a href="/Faq.html" class="navbar-link title-sm" data-nav-link>FAQ</a>
</li>
<li class="navbar-item">
<a href="/careers.html" class="navbar-link title-sm" data-nav-link>Careers</a>
</li>
</ul>
</nav>
<a href="./signin.html" class="btn" id = "freeTrial" >Start Free Trial</a>
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<i class="fa-solid fa-bars"></i>
</button>
<div class="overlay" data-overlay data-nav-toggler></div>
</div>
</header>
<!-- Main Section -->
<main class="section">
<section class="internship-info mb-5">
<div class="container">
<h1 class="headline-md mb-5 text-center" data-aos="zoom-in">Internship Opportunities at SkillWise</h1>
<h2 class="mt-3">Gain Valuable Experience with Skillwise</h2>
<p>At Skillwise, we're committed to fostering the next generation of talent. We invite motivated individuals
to
join our dynamic team and contribute to our ongoing success story. Our internship program offers a
unique
opportunity to gain hands-on experience in a collaborative, innovative environment that prioritizes
personal
and professional growth.</p>
<h2 class="mt-3">What We Offer:</h2>
<ul>
<li>Immersive learning experience in a fast-paced, industry-leading company</li>
<li>Mentorship from experienced professionals</li>
<li>Exposure to cutting-edge projects and technologies</li>
<li>Opportunity to build a professional network</li>
<li>Certificate of completion upon successful fulfillment of the internship</li>
</ul>
<h2 class="mt-3">What We're Looking For:</h2>
<ul>
<li>Passionate and driven individuals eager to learn and contribute</li>
<li>Strong academic background in relevant fields</li>
<li>Excellent communication and teamwork skills</li>
<li>Innovative mindset and problem-solving abilities</li>
</ul>
<p><strong>Note:</strong> This is an unpaid internship focused on educational and professional development.
</p>
<p>Join us at Skillwise and take the first step towards a promising career. Apply now to be part of our
journey
towards unprecedented success.</p>
</div>
</section>
<!-- Apply Form -->
<section class="application-form" data-aos="zoom-in">
<div class="internship-form rounded shadow-lg border p-5">
<div class="container">
<h2 class="text-center mb-5 fw-bold">Apply for Internship</h2>
<form id="internship-application-form" action="#" method="POST">
<div class="form-group mb-3">
<label class="fw-bold" for="first-name">First name:</label>
<input type="text" id="first-name" name="first-name" maxlength="100" required>
</div>
<div class="form-group mb-3">
<label class="fw-bold" for="last-name">Last name:</label>
<input type="text" id="last-name" name="last-name" maxlength="100" required>
</div>
<div class="form-group mb-3">
<label class="fw-bold" for="email">Email:</label>
<input type="email" id="email" name="email" maxlength="250" required>
</div>
<div class="form-group mb-3">
<label class="fw-bold" for="phone">Phone:</label>
<input type="tel" id="phone" name="phone" maxlength="50" required>
</div>
<div class="form-group mb-3 my-4">
<label for="position" class="fw-bold">Position:</label>
<select id="position" name="position" class="form-select form-control-lg" required>
<option value="" disabled selected>Select a position</option>
<option value="Frontend Developer">Frontend Developer</option>
<option value="Blockchain Enthusiast">Blockchain Enthusiast</option>
<option value="Digital Marketing">Digital Marketing</option>
<option value="Graphic Designer">Graphic Designer</option>
<option value="Researcher">Researcher</option>
<option value="Other">Other</option>
</select>
</div>
<div class="form-group mb-3">
<label class="fw-bold" for="start-date">Start Date: </label>
<input type="date" id="start-date" name="start-date" required>
</div>
<div class="form-group mb-3">
<label class="fw-bold" for="cv-linkedin">Link to CV/LinkedIn: </label>
<input type="url" id="cv-linkedin" name="cv-linkedin">
</div>
<div class="mt-5 mb-3">
<button style="font-size: 18px;" type="submit" class="btn submit-button w-100">Apply <i
class="fa fa-paper-plane" aria-hidden="true"></i></button>
</div>
</form>
<p id="form-submission-message" style="display: none;">Thank you! We'll be in touch.</p>
</div>
</div>
</section>
<div class="footer-bottom">
<div class="container">
<p class="copyright">
<a href="copy.html"> © Copyright Policy <time id="year"></time> </a> All Rights Reserved by Priya Ghosal
<br>
Made with ♥ by Priya Ghosal
</p>
</div>
</div>
</main>
<!-- scripts -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script src="assets/js/script.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js" type="module"></script>
<script src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js" nomodule></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
document.getElementById('internship-application-form').addEventListener('submit', function (event) {
event.preventDefault();
// Here you would typically send the form data to a server
document.getElementById('form-submission-message').style.display = 'block';
this.reset();
});
</script>
</body>
</html>