-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcareer.html
478 lines (436 loc) · 15 KB
/
career.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<link rel="icon" href="./image/logo.webp" />
<link rel="stylesheet" href="career.css" />
<title>Career</title>
</head>
<body>
<div class="nav">
<a href="index.html">
<img src="./image/logo2.webp" alt="logo" loading="lazy"
/></a>
<div class="nav-part2">
<ul>
<li id="service">
Service <i class="ri-arrow-drop-down-line"></i>
<div class="dropdown1">
<ul style="list-style: none">
<li><a href="./Web-Development.html">Web App</a></li>
<li>
<a href="./Mobile-Development.html">Mobile App</a>
</li>
<li>
<a href="./Design.html">Design</a>
</li>
<li>
<a href="./SEO.html">S.E.O.</a>
</li>
</ul>
</div>
</li>
<li>
Technology <i class="ri-arrow-drop-down-line"></i>
<div class="dropdown2">
<ul style="list-style: none">
<li>
<a href="./AspNet.html">Asp.Net</a>
</li>
<li>
<a href="./DBMS.html">DBMS</a>
</li>
<li>
<a href="./Mean-Stack.html">MEAN Stack</a>
</li>
<li>
<a href="./Mern-Stack.html">MERN Stack</a>
</li>
<li><a href="./Meteor.html">Meteor</a></li>
<li><a href="./Reporting.html">Reporting</a></li>
</ul>
</div>
</li>
<li><a href="./about-us.html">About Us</a></li>
<li><a href="./ourWork.html">Our Work</a></li>
<li><a href="./career.html">Career</a></li>
<li><a href="./contact-us.html">Contact Us</a></li>
</ul>
</div>
<div class="button">
<i
class="ri-menu-line"
id="menu"
onclick="showMobileNav()"
style="cursor: pointer"
></i>
<i
class="ri-close-large-line"
id="close"
onclick="closeMobileNav()"
style="cursor: pointer"
></i>
</div>
</div>
<!-- mobile nav -->
<div class="mobile-nav">
<ul>
<li onclick="showMobDropdown1()">
Service <i class="ri-arrow-drop-down-line"></i>
<ul class="mob-dropdown1" style="list-style: none">
<li><a href="./Web-Development.html">Web App</a></li>
<li><a href="./Mobile-Development.html">Mobile App</a></li>
<li><a href="./Design.html">Design</a></li>
<li><a href="./SEO.html">S.E.O.</a></li>
</ul>
</li>
<li onclick="showMobDropdown2()">
Technology<i class="ri-arrow-drop-down-line"></i>
<ul class="mob-dropdown2" style="list-style: none">
<li><a href="./AspNet.html">Asp.Net</a></li>
<li><a href="./DBMS.html">DBMS</a></li>
<li><a href="./Mean-Stack.html">MEAN Stack</a></li>
<li><a href="./Mern-Stack.html">MERN Stack</a></li>
<li><a href="./Meteor.html">Meteor</a></li>
<li><a href="./Reporting.html">Reporting</a></li>
</ul>
</li>
<li><a href="./about-us.html">About Us</a></li>
<li><a href="./ourWork.html">Our Work</a></li>
<li><a href="./career.html">Career</a></li>
<li><a href="./contact-us.html">Contact Us</a></li>
</ul>
</div>
<!-- end of mobile nav -->
<section class="content-1">
<div class="row">
<div id="div-1">
<h1 data-aos="fade-up" data-aos-duration="1000">
Get ready to change your future career
</h1>
<p data-aos="fade-up" data-aos-delay="100" data-aos-duration="1000">
Please get in touch with Algoscript Software Pvt. Ltd. and our team
will contact you as soon as possible.
</p>
</div>
<div
id="div-2"
data-aos="zoom-out"
data-aos-delay="100"
data-aos-duration="1000"
>
<img src="./image/interview.webp" alt="interview" loading="lazy" />
</div>
</div>
</section>
<!-- end of content-1 -->
<!-- ----------------------------------------------------- -->
<section class="content-2">
<div class="row">
<div class="div-1">
<h1>Who We Are? – Know Us Better</h1>
<p>
Essentially, we are software development company with a pool of
expert human and technical resources that work in bringing concepts
into real-time applications. We want to bring the best of technology
to achieve milestones for our clients. We are keen on building
lasting business relations with technocrats who want to utilize the
best of technology to enhance business, concept and the world in
general. <br /><br />
Our vision is to build never-seen-before applications that work as
benchmark for the world of technology. We have made a mark as the
best web and mobile app development company in India and USA. We
want to spread our wings and cover the rest of the world with our
technical acumen and vision for the business.
</p>
</div>
<div class="div-2">
<h1>What We Do? – Our Craftsmanship</h1>
<p>
We are a top software solutions provider with a vision for global
technology evolution. We aim at becoming an up-to-date web and
custom mobile app development company that can convert any complex
concept into a user-friendly, business-centric application. For
this, we choose futuristic technologies, experienced designers and
developers as well as project managers who execute all projects with
their technical prowess. <br /><br />
With some of the top app developers in India, we build strong teams
that can leverage mind blowing technologies like Internet of Things
(IoT), Cloud Services, web technologies, mobile platforms, AI-ML
based apps, chat services and much more Lorem ipsum dolor sit amet
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Consequatur, soluta!
</p>
</div>
</div>
</section>
<!-- end of content-2 -->
<!-- ----------------------------------------------------- -->
<section class="content-3">
<div class="heading" data-aos="fade-up">
<h2>Our facilities</h2>
<h1>Benefits of employee</h1>
</div>
<div class="row" data-aos="fade-up" data-aos-delay="100">
<div class="person">
<img
src="./image/birthday-cake.webp"
alt="birthday-cake"
loading="lazy"
/>
<h5>Birthday</h5>
</div>
<div class="person">
<img src="./image/sports.webp" alt="sports" loading="lazy" />
<h5>Sports</h5>
</div>
<div class="person">
<img src="./image/festive.webp" alt="festive" loading="lazy" />
<h5>Festival Celebration</h5>
</div>
<div class="person">
<img
src="./image/personality-development.webp"
alt="personality-development"
loading="lazy"
/>
<h5>Personality-Development</h5>
</div>
<div class="person">
<img src="./image/bonus.webp" alt="bonus" loading="lazy" />
<h5>Perfomance Bonus</h5>
</div>
<div class="person">
<img
src="./image/yoga-position.webp"
alt="yoga-position"
loading="lazy"
/>
<h5>Wellness Programs</h5>
</div>
<div class="person">
<img src="./image/training.webp" alt="training" loading="lazy" />
<h5>Employee Training</h5>
</div>
<div class="person">
<img
src="./image/personal-growth.webp"
alt="personal-growth"
loading="lazy"
/>
<h5>Personal Growth</h5>
</div>
<div class="person">
<img src="./image/schedule.webp" alt="person" loading="lazy" />
<h5>Flexible Schedule</h5>
</div>
<!-- end of content-3 -->
<!-- ----------------------------------------------------- -->
</div>
</section>
<!-- end of content-3 -->
<section class="content-4">
<div class="heading" data-aos="fade-up">
<h2>Inquiry Form</h2>
<h1>Contact us</h1>
</div>
<div class="row">
<form>
<label for="name">Name</label>
<br />
<input
type="text"
placeholder="Your Name"
id="name"
name="name"
required
/>
<br />
<br />
<label for="email">Email</label>
<br />
<input
type="email"
placeholder="Your Email"
id="email"
name="email"
required
/>
<br />
<br />
<label for="contact">Contact</label>
<br />
<input
type="tel"
placeholder="Your Contact Number"
id="contact"
name="contact"
pattern="[0-9]{10}"
required
/>
<br />
<br />
<label for="resume">Upload Resume</label>
<br />
<input
type="file"
id="resume"
name="resume"
accept=".pdf,.doc,.docx"
required
/>
<br />
<div class="button">
<button type="submit">Submit</button>
</div>
</form>
</div>
</section>
<footer>
<div class="row">
<div>
<a href="index.html">
<img src="./image/logo2.webp" alt="logo2" loading="lazy" />
</a>
<p>
We believe that pursuit of excellence is the key to success, and via
this pursuit, we wish to become global leaders in consulting and
outsourcing web and mobile application development services.
</p>
<div class="smedia">
<a href="https://www.instagram.com/manasranjanarukha/">
<i class="ri-instagram-line" id="icon"></i>
</a>
<a
href="https://www.linkedin.com/in/manas-ranjan-arukha-1338012b7/"
>
<i class="ri-linkedin-box-fill" id="icon"></i
></a>
</div>
</div>
<div>
<h4>OUR SERVICES</h4>
<ul>
<a href="./Web-Development.html">
<li>Web App</li>
</a>
<a href="./Mobile-Development.html">
<li>Mobile App</li>
</a>
<a href="./Design.html"> <li>Designing</li></a>
<a href="./SEO.html"><li>S.E.O.</li></a>
</ul>
</div>
<div>
<h4>HIRE DEVELOPER</h4>
<ul>
<a href="./hire-asp-net.html"><li>ASP.NET</li></a>
<a href="./hire-DBMS.html"><li>DBMS</li></a>
<a href="./hire-mean-stack.html"><li>Mean Stack</li></a>
<a href="./hire-mern-stack.html"><li>Mern Stack</li></a>
<a href="./hire-meteor.html"><li>Meteor</li></a>
<a href="./hire-reporting.html"><li>Reporting</li></a>
</ul>
</div>
<div>
<h4>CONTACT US</h4>
<p>
<a
href="https://maps.app.goo.gl/gbAcTwXTUo5XNPRg6"
rel="noopener"
aria-label="Address"
target="_blank"
title=""
data-bs-original-title="Algoscript Address"
>
Panisaunli, Khaira, Balasore, Odisha, India - 756049
</a>
</p>
<ul>
<li>
<span>Phone:- </span
><a
href="tel:+918093796052"
aria-label="Mobile"
rel="noopener"
title=""
data-bs-original-title="Algoscript Contact"
>+91 80937 96052</a
>
</li>
<li>
<span>Email:- </span
><a
aria-label="Mail"
href="https://mail.google.com/mail/?view=cm&fs=1&tf=1&[email protected]"
target="_blank"
rel="noopener"
title=""
data-bs-original-title="Algoscript Mail"
>
</li>
</ul>
</div>
</div>
</footer>
<script>
document.addEventListener("DOMContentLoaded", function () {
AOS.init();
});
</script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
// Mobile Nav
const mobDropdown1 = document.querySelector(".mob-dropdown1");
const mobDropdown2 = document.querySelector(".mob-dropdown2");
const mobileNav = document.querySelector(".mobile-nav");
const menu = document.querySelector("#menu");
const close = document.querySelector("#close");
const body = document.querySelector("body");
let mobDropdown1Active = false; // Set to false initially
let mobDropdown2Active = false; // Set to false initially
function showMobDropdown1() {
if (mobDropdown1Active) {
mobDropdown1.style.display = "none";
mobDropdown1Active = false;
} else {
mobDropdown1.style.display = "block";
mobDropdown1Active = true;
}
}
function showMobDropdown2() {
if (mobDropdown2Active) {
mobDropdown2.style.display = "none";
mobDropdown2Active = false;
} else {
mobDropdown2.style.display = "block";
mobDropdown2Active = true;
}
}
function showMobileNav() {
mobileNav.style.display = "block";
menu.style.display = "none";
close.style.display = "block";
}
function closeMobileNav() {
mobileNav.style.display = "none";
close.style.display = "none";
menu.style.display = "block";
}
// ----------------------------------------------------------------------------
document
.querySelector("form")
.addEventListener("submit", function (event) {
event.preventDefault(); // Prevent form from refreshing the page
alert("Form submitted successfully!");
});
</script>
</body>
</html>