forked from I-Himanshu/CodeChamp-s-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
internships.html
1056 lines (992 loc) · 40.4 KB
/
internships.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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="Finding Internship is now easy with CodeChamp, choose from wide range of choices including top IT MNCs. From UI/UX to SDE Openings we are uploading new opportunities regularly."
/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Internships</title>
<link rel="icon" type="image/png" href="./images/logo.png" />
<!--bootstrap Css-->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor"
crossorigin="anonymous"
/>
<!--external css-->
<link href="./style.css" rel="stylesheet" />
<link href="./internship.css" rel="stylesheet" />
<!--bootstrap icons cdn-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
/>
</head>
<script
async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1210592339079044"
crossorigin="anonymous"
></script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-3EL4753RH2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-3EL4753RH2");
</script>
<body>
<!--preloader starts-->
<div id="preloader">
<p class="preloader_text preloader_text1"></p>
<p class="preloader_text preloader_text2">TOGETHER</p>
</div>
<!--preloader ends-->
<!--navbar starts-->
<nav class="navbar navbar-expand-lg sticky-top bg-white" id="Navbar">
<div class="container-fluid">
<a class="navbar-brand ml-0 logo" href="#"
><img
src="./images/logo.png"
style="height: 40px; width: 80px; filter: brightness(120%)"
/></a>
<!--hamburger button for mobile view starts-->
<button
class="navbar-toggler hamburger"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!--hamburger button for mobile view ends-->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 nav-ul">
<li class="nav-item">
<a
class="nav-link dark-anchor"
aria-current="page"
href="./index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="./index.html#fifth"
>About</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="./index.html#second"
>Events</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="./index.html#fourth"
>Team</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="./index.html#sixth"
>Opportunities</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="#" style="color: #fd7014"
>Internships / Jobs</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="./index.html#feedback"
>Feedbacks</a
>
</li>
<li class="nav-item">
<a class="nav-link dark-anchor" href="./index.html#tenth"
>Contact Us</a
>
</li>
<div class="form-check form-switch d-flex align-items-center mx-2">
<input
type="checkbox"
class="checkbox"
id="checkbox"
onclick="darkModeToggler()"
/>
<label for="checkbox" class="label" id="toggle-switch">
<i
class="bi bi-sun fs-6"
style="font-size: 0.6rem !important"
></i>
<i
class="bi bi-moon fs-6"
style="font-size: 0.6rem !important"
></i>
<div class="ball"></div>
</label>
</div>
</ul>
</div>
</div>
</nav>
<!--navbar ends-->
<div class="container internships-cards">
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Summer Intern 2023
</h3>
<h5 class="company-name">Baker Hughes</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Mumbai</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
The Baker Hughes Internship is designed to enable undergraduates
pursing a Bachelors or Masters degree to gain hands-on work
experience as the foundation of their professional lives. Our
internships will give you first-hand insights into the processes,
systems and practices that are aligned to ensure customer needs are
met through flawless execution and the application of leading-edge
technology. These internships duration are 6-11 months.
</p>
<div class="internship-btn">
<a
href="https://careers.bakerhughes.com/global/en/job/BAHUGLOBALR64006/Summer-Internships-2023-India"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
JavaScript Engineer
</h3>
<h5 class="company-name">Wingify</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Remote</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
As an Intern JavaScript, you will be required to work on various
JavaScript libraries that are served on our customers’ websites
thereby impacting millions of users. These libraries are the core of
all the features of VWO. We love vanilla JavaScript and work with
cutting-edge technologies like TypeScript, Rollup.js, Cypress,
ESLint.
</p>
<div class="internship-btn">
<a
href="https://wingify.hire.trakstar.com/jobs/74b6dd7602054ed78a2e873e516bdbe8"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Mobile- Intern
</h3>
<h5 class="company-name">Zeta</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Zeta counts amongst its customers over 10 banks and 25 fintechs
across 8 countries - some of our notable clients include Sodexo - a
leading issuer of employee benefits & rewards with over 30 million
global users, and HDFC Bank. You will working as an intern and role
will be like -Design and build advanced frameworks for the Android
or iOS platform.
</p>
<div class="internship-btn">
<a
href="https://jobs.lever.co/zeta/811214e5-8efd-464c-bc3e-42c276ec00d0"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
R & D Engineer
</h3>
<h5 class="company-name">Tejas Network</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Full-time</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Having a strong focus on R&D and IPR creation, Tejas has filed 349
patents. It is ranked #1 in India’s Optical Aggregation Market and
stands among top ten players globally. Tejas designs and develops
globally deployable optical and data networking products across all
parts of the network access, metro and core.
</p>
<div class="internship-btn">
<a
href="https://www.naukri.com/job-listings-engineer-r-d-tejas-networks-limited-bangalore-bengaluru-0-to-1-years-070922001520/?src=jobsorigin.com"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
C++ Programming Intern
</h3>
<h5 class="company-name">Sony</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Remote</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
looking for talented individuals to join us for an internship in
early October 2022. Internships at Sony Research India are aimed to
offer students with industry exposure with production-level project
experience. The primary responsibility in this role will be to
positively contribute to the growth and development of innovative
technologies at SRI.
</p>
<div class="internship-btn">
<a
href="https://www.linkedin.com/jobs/view/3235415600/"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Co-Op/Intern
</h3>
<h5 class="company-name">AMD</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Developing great technology takes more than talent: it takes amazing
people who understand collaboration, respect, and who will go the
“extra mile” to achieve unthinkable results. It takes people who
have the passion and desire to disrupt the status quo, push
boundaries, deliver innovation, and change the world.
</p>
<div class="internship-btn">
<a
href="https://jobs.amd.com/job/Bangalore-Co-Op-Intern-%28182077%29-Karn/934314000/"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Software Engineer Intern
</h3>
<h5 class="company-name">Atlassian</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Full-time / Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Not Disclosed</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Back with the opportunity you’ve been waiting for, in collaboration
with the Girlscript Foundation. Atlassian is once again partnering
with GirlScript Foundation to hire women for Software Engineer (2023
batch) and Software Engineer Intern (2024 batch) roles. Now is the
time to unleash your potential and apply to one of the year’s most
exciting hiring opportunities!
</p>
<div class="internship-btn">
<a
href="https://womenintech.girlscript.tech/"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Software Engineer Internship
</h3>
<h5 class="company-name">UBER</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
As an intern, you'll have a direct impact on the customer experience
for riders, drivers, eaters, restaurant and business owners, and
cities alike. If you like our services and want to bring them to the
next level. If you enjoy working in a team-based environment that
executes at a fast pace. If you're interested in working on products
that impact millions of people around the globe.
</p>
<div class="internship-btn">
<a
href="https://university-uber.icims.com/jobs/116847/2023-software-engineer-internship/job"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Software Engineer Intern
</h3>
<h5 class="company-name">Atlassian</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Full-time / Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Not Disclosed</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
back with the opportunity you’ve been waiting for, in collaboration
with the Girlscript Foundation. Atlassian is once again partnering
with GirlScript Foundation to hire women for Software Engineer (2023
batch) and Software Engineer Intern (2024 batch) roles. Now is the
time to unleash your potential and apply to one of the year’s most
exciting hiring opportunities!
</p>
<div class="internship-btn">
<a
href="https://www.linkedin.com/jobs/view/3119909915/?alternateChannel=search&refId=9uIiUloP7HW4C7kikW%2Fyow%3D%3D&trackingId=gOzpChJoJxAR5BAlcRUvQA%3D%3D"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Software Engineer, Full Stack
</h3>
<h5 class="company-name">Google</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Full-time</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore(Hybrid)</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Design, develop, test, deploy, maintain and improve software.Manage
individual project priorities, deadlines and deliverables. Design
and implement new user-facing features in Google’s products. Write
client-side code for web-based applications, create fast,
easy-to-use, high volume production applications, and develop
prototypes. Optimize web applications to maximize speed and scale.
</p>
<div class="internship-btn">
<a
href="https://www.linkedin.com/jobs/view/3119909915/?alternateChannel=search&refId=9uIiUloP7HW4C7kikW%2Fyow%3D%3D&trackingId=gOzpChJoJxAR5BAlcRUvQA%3D%3D"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Software Engineer - Intern
</h3>
<h5 class="company-name">Cornerstone</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Mumbai(Remote)</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
keen interest in any specific technical subject, data structures /
microprocessors / algorithms / theory of computation etc. Someone
who spends a lot of time on computers not doing social media or
games. Loves to solve small problems or navigate through
situations.Communicate clearly about your completions and pending
jobs at hand, everyday.
</p>
<div class="internship-btn">
<a
href="https://cornerstone.csod.com/ux/ats/careersite/2/home/requisition/7835?c=cornerstone"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Python / EmberJS Developers
</h3>
<h5 class="company-name">Fossasia</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Remote</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
As a FOSSASIA intern working on eventyay.com, you’ll collaborate
together with team to develop the Open Event project that runs the
eventyay website. Fossasia use Flask as a backend and Ember.js as a
frontend technology. The team follows best practices and uses scrum
emails for the daily standup and Gitter for chat communication.
</p>
<div class="internship-btn">
<a
href="https://blog.fossasia.org/internships-for-python-emberjs-developers-for-eventyay-com/"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Data Engineer (Intern)
</h3>
<h5 class="company-name">Cisco</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Builds / oversees platforms and systems to manage and store data
from internal and external sources by leveraging both distributed
and local structures. Establishes processes / structures based on
business and technical requirements to channel data from multiple
inputs and route appropriately using data structures available.
</p>
<div class="internship-btn">
<a
href="https://jobs.cisco.com/jobs/ProjectDetail/Data-Engineer-Intern-India-UHR/1375513"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Software Engineer
</h3>
<h5 class="company-name">Goldman Sachs</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Full Time</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Goldman Sachs is an equal employment/affirmative action employer
Female/Minority/Disability/Veteran/Sexual Orientation/Gender
Identity. You'll be part of a team with members from a wide range of
academic and professional backgrounds, such as law, accounting,
sales, and trading. We look for those who possess sound judgment,
curiosity, and are able to adapt to a changing regulatory landscape.
</p>
<div class="internship-btn">
<a
href="https://hdpc.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/104961/"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
UI/UX Intern
</h3>
<h5 class="company-name">Upstox</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore/Mumbai</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Hiring creative and passionate individuals who are looking for 3 to
6 months of internship opportunities in the FinTech domain. You will
be working alongside seasoned designers, researchers, copywriters,
product managers, engineering leaders, and other stakeholders on
solving complex problems.
</p>
<div class="internship-btn">
<a
href="https://jobs.lever.co/upstox/4a6255e6-f820-4ff6-8b0d-f1fa46d63df2"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Frontend Developer
</h3>
<h5 class="company-name">CodersBrain</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Full Time</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Remote</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Looking for a mid-tier frontend developer to join our growing team
of developers. Day-to-day tasks will involve a mixture of support
level tasks and new feature development, as you learn the system and
become more comfortable you will find new feature development will
make up the bulk of your work (opposed to working heavily with
support/legacy code).
</p>
<div class="internship-btn">
<a
href=" https://www.linkedin.com/jobs/view/3163390461"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Summer Analyst
</h3>
<h5 class="company-name">Google</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore/ Mumbai</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Summer Analysts join for 2 months in May of each year. You will work
on software development projects to keep important business-critical
systems up and running, from code-level troubleshooting of traffic
anomalies to maintenance of our services; from monitoring and alerts
to building automation infrastructure.
</p>
<div class="internship-btn">
<a
href="https://careers.google.com/jobs/results/80503484702433990/"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Research Intern
</h3>
<h5 class="company-name">Microsoft</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
During the internship, students are paired with mentors and expected
to collaborate with other interns and researchers, present findings,
and contribute to the vibrant life of the community. MSR India
conducts research in a wide range of areas and Internships are
available in all of them.
</p>
<div class="internship-btn">
<a
href="https://careers.microsoft.com/us/en/job/931311/Research-Intern"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
React Developer
</h3>
<h5 class="company-name">Turing.com</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Full Time</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Remote</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
The developer will be responsible for building scalable applications
and integrating them with APIs.The company is NASDAQ-listed and has
raised over $1bn in revenue.Analyze, design, and develop tests and
test-automation suites. Design and develop a processing platform
using various configuration management technologies
</p>
<div class="internship-btn">
<a
href="https://www.linkedin.com/jobs/collections/recommended/?currentJobId=3220035835"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
System Engineer Intern
</h3>
<h5 class="company-name">Infosys</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Internship</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Not Specified</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Infosys is providing internship opportunity as system engineer
Intern
</p>
<div class="internship-btn">
<a
href="https://careers.infosys.com/instep/internship/instepregistrationpage.aspx"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
<div class="card internships-card" style="width: 25rem" target="_blank">
<div class="card-body">
<h3 class="card-title" style="color: rgb(95, 95, 218)">
Software Engineer
</h3>
<h5 class="company-name">Cisco</h5>
<span class="type-container"
><i class="bi bi-calendar2-week"></i
><span class="type"> Full Time</span></span
>
<span class="location-container"
><i class="bi bi-geo"></i
><span class="location"> Bangalore</span></span
>
<h5 class="about">About</h5>
<p class="card-text content">
Design, develop, troubleshoot and debug software programs for
enhancements and new products. Develop software and tools in support
of design, infrastructure and technology platforms, including
operating systems, compilers, routers, networks, utilities,
databases and Internet-related tools.
</p>
<div class="internship-btn">
<a
href="https://jobs.cisco.com/jobs/ProjectDetail/Software-Engineer-Network-Embedded-Application-Development-New-Grad-India-UHR/1374582"
class="btn btn-primary rec-button common-button"
target="_blank"
>APPLY NOW</a
>
</div>
</div>
</div>
</div>
<br />
<div class="discord-cta mt-6 text-center">
<p style="color: #fd7014">
For more, check out
<span style="color: rgb(106, 99, 233)">#internship</span> channnel on
our Discord Server.
</p>
<a
href="https://discord.gg/Pp5xg74nKH"
class="discord-link"
target="_blank"
><i class="bi bi-discord" style="color: #5865f2"></i> Discord Channel</a
>
</div>
<a
href="#"
id="toTopBtn"
class="cd-top text-replace js-cd-top cd-top--is-visible cd-top--fade-out"
data-abc="true"
></a>
<footer>
<div
class="text-center"
style="color: #fd7014; padding-top: 30px; font-weight: 800"
>
<p style="font-size: 20px">Made with ❤️ by us.</p>
</div>
<div class="main-content">
<div class="about" style="margin-top: 20px">
<h4 class="heading footer-content text-center">CodeChamp</h4>
<br />
<p class="footer-content text">
CodeChamp is the Community of Coding Enthusiasts, Where we Share
Resources, Roadmaps and Opportunities Updates to explore
technologies.
</p>
</div>
<div class="quick-links footer-content" style="margin-top: 20px">
<h4 class="heading">Quick Navigate</h4>
<br />
<li><a href="./index.html" class="text"> Home </a></li>
<li><a href="./index.html#fifth" class="text"> About </a></li>
<li><a href="./index.html#second" class="text"> Events </a></li>
<li><a href="./index.html#fourth" class="text"> Team </a></li>
<li>
<a href="./index.html#sixth" class="text"> Opportunities </a>
</li>
<li><a href="./index.html#feedback" class="text"> Feedbacks </a></li>
</div>
<div class="contact-details footer-content" style="margin-top: 20px">
<h4 class="heading text-center">Contact</h4>
<br />
<li class="text">
<i class="bi bi-geo-alt-fill"></i><span> Patna, India</span>
</li>
<li class="text">
<i class="bi bi-envelope-paper"></i
><span> [email protected]</span>
</li>
</div>
</div>
<div class="contact">
<div class="footer-socials">
<div class="icon linkedin">
<div class="tooltip">LinkedIn</div>
<span
><a href="https://www.linkedin.com/company/codechamp03/"
><i class="bi bi-linkedin"></i></a
></span>
</div>
<div class="icon instagram">
<div class="tooltip">Instagram</div>
<span
><a href="https://www.instagram.com/codechamp03/"
><i class="bi bi-instagram"></i></a
></span>
</div>
<div class="icon discord">
<div class="tooltip">Discord</div>
<span
><a href="https://discord.gg/vVM4hBKnHt"
><i class="bi bi-discord"></i></a
></span>
</div>
<div class="icon github">
<div class="tooltip">Github</div>
<span
><a href="https://github.com/DeveloperAshish8/CodeChamp-s-Website"
><i class="bi bi-github"></i></a
></span>
</div>
<div class="icon email">
<div class="tooltip">email</div>
<span
><a
href="https://mail.google.com/mail/u/0/#inbox/QgrcJHsTmcCtxjSBkpNplcTVVpXWxXjbhFl?compose=DmwnWsdMVpKjLGgbrSgPKcKNNrktMnvgTRQNBSBlKTWkMkbGFkKmLtMZXXLqsQpQLfpDHclpldcG"
><i class="bi bi-envelope-fill"></i></a
></span>
</div>
</div>
</div>
<div class="copyright-content" style="color: white">
<p>Copyright © 2022 <a href="#">CodeChamp</a> All Rights Reserved</p>
</div>
<br />
</footer>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"