-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
2280 lines (2082 loc) · 87.4 KB
/
index.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>
<title>House Nairobi </title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/owl.carousel.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link rel="stylesheet" href="css/magnific-popup.css" />
<link rel="icon" href="./favicon.ico" type="image/png">
<!-- MAIN CSS -->
<link rel="stylesheet" href="css/templatemo-style.css" />
<link rel="stylesheet" href="https://unpkg.com/@bootstrapstudio/bootstrap-better-nav/dist/bootstrap-better-nav.min.css">
<!-- At the end of <body>, after jQuery and the Bootstrap js -->
<script
src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- PRE LOADER -->
<section
id="video-overlay"
style="
background-color: #fff;
height: 100vh;
width: 100%;
z-index: 9999;
padding-top: 10px;
position: sticky;
top: 0;
"
class="animated"
>
<div style="z-index: 99999;" class="text-center mt-0 mx-auto">
<h2>We would like to present you a short video on how our ride began.</h2>
<button class="btn btn-secondary " onclick="skipVid()">Skip Video</button>
</div>
<div style="max-height: 75vh;width: 100%; display: flex; justify-content: center; margin-top: 40px;">
<video
style="max-width: 100%; max-height: 80vh;"
id="intro-video"
class="col-12"
controls
autoplay
>
<source src="./video/FINAL.mp4" type="video/mp4" />
</video>
</div>
<script>
let video = document.querySelector("#intro-video");
skipVid = ()=>{
video.pause()
document.getElementById("video-overlay").classList.add("fadeOutUp");
setTimeout(() => {
document.getElementById("video-overlay").style.display = "none"
document.getElementById("video-overlay").innerHTML=""
}, 400);
}
setInterval(() => {
// console.log(video.ended);
if (video.ended) {
console.log(document.getElementById("video-overlay").classList);
skipVid()
}
}, 300);
</script>
</section>
<section class="preloader">
<div class="spinner">
<span class="spinner-rotate"></span>
</div>
</section>
<!-- MENU -->
<section class="navbar custom-navbar navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button
class="navbar-toggle"
data-toggle="collapse"
data-target=".navbar-collapse"
>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<!-- lOGO TEXT HERE -->
<a href="index.html" class="navbar-brand"
>Nairobi <span>.</span>HRC</a
>
</div>
<!-- MENU LINKS -->
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav ml-auto navbar-nav-first">
<li><a href="#home" class="smoothScroll">Home</a></li>
<li><a href="#about" class="smoothScroll">About</a></li>
<li><a href="#team" class="smoothScroll">Team(Nairobi)</a></li>
<li><a href="#what-interns-say" class="smoothScroll">Blog</a></li>
<li><a href="#menu" class="smoothScroll">Memes</a></li>
<li><a href="#lifeHrc" class="smoothScroll">Life at HRC</a></li>
</ul>
<!-- <ul class="nav navbar-nav navbar-right"> -->
<!--
<li>
<a href="#">Call Now! <i class="fa fa-phone"></i> 010 020 0340</a>
</li>
-->
<!-- <a href="#footer" class="section-btn">Reserve a table</a> -->
<!-- </ul> -->
</div>
</div>
</section>
<!-- HOME -->
<section id="home" class="slider" data-stellar-background-ratio="0.5">
<div class="row">
<div class="owl-carousel owl-theme" id="hero-carousel">
<div class="item item-fourth">
<div style="height: 80vh; display: flex;justify-content: left;align-items:flex-end;">
<div class="container">
<h1>We are Nairobians</h1>
</div>
</div>
</div>
<div class="item item-first">
<div class="caption">
<div class="container">
<div class="col-md-8 col-sm-12">
<img src="./images/highradius.png" style="width: 300px;"/>
<h1>Get to know us</h1>
<a href="#team" class="section-btn btn btn-default smoothScroll">Meet our Team</a>
</div>
</div>
</div>
</div>
<div class="item item-second">
<div class="caption">
<div class="container">
<div class="col-md-8 col-sm-12">
<h1>Discover Original Memes</h1>
<a href="#menu" class="section-btn btn btn-default smoothScroll">Discover Memes</a>
</div>
</div>
</div>
</div>
<div class="item item-third">
<div class="caption">
<div class="container">
<div class="col-md-8 col-sm-12">
<h1>Experience at HRC</h1>
<a href="#what-interns-say" class="section-btn btn btn-default smoothScroll">Read what the interns say </a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ABOUT -->
<section id="about" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row align-items-center">
<div class="col-md-6 col-sm-12">
<div class="about-info">
<div class="section-title wow fadeInUp" data-wow-delay="0.2s">
<h4>Read our story</h4>
<h2>
We've been Making The Best Out of the Resourses We Are
Provided
</h2>
</div>
<div class="wow fadeInUp" data-wow-delay="0.4s">
<p>
House Nairobi in Highway to Highradius Techtrack is enthusiastic, motivated, and always active. We usually speak loud and clear and do our job. We Nairobians are enthusiastic to learn and grow as a team. We motivate each other and are active participants of this program. Call it passionate or punctuation, be it quizzes or assignments we are always on time.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="skill-thumb">
<div
class="wow fadeInUp section-title color-white"
data-wow-delay="1.2s"
>
<h2>How to identify a Nairobian?</h2>
</div>
<div class="wow fadeInUp skills-thumb" data-wow-delay="1.6s">
<strong>Coding</strong>
<span class="color-white pull-right">80%</span>
<div class="progress">
<div
class="progress-bar progress-bar-primary"
role="progressbar"
aria-valuenow="80"
aria-valuemin="0"
aria-valuemax="100"
style="width: 80%;"
></div>
</div>
<strong>Reading Novels</strong>
<span class="color-white pull-right">60%</span>
<div class="progress">
<div
class="progress-bar progress-bar-primary"
role="progressbar"
aria-valuenow="60"
aria-valuemin="0"
aria-valuemax="100"
style="width: 60%;"
></div>
</div>
<strong>Watching Movies</strong>
<span class="color-white pull-right">65%</span>
<div class="progress">
<div
class="progress-bar progress-bar-primary"
role="progressbar"
aria-valuenow="65"
aria-valuemin="0"
aria-valuemax="100"
style="width: 65%;"
></div>
</div>
<strong>Gaming</strong>
<span class="color-white pull-right">40%</span>
<div class="progress">
<div
class="progress-bar progress-bar-primary"
role="progressbar"
aria-valuenow="40"
aria-valuemin="0"
aria-valuemax="100"
style="width: 40%;"
></div>
</div>
<strong>Travelling</strong>
<span class="color-white pull-right">42%</span>
<div class="progress">
<div
class="progress-bar progress-bar-primary"
role="progressbar"
aria-valuenow="42"
aria-valuemin="0"
aria-valuemax="100"
style="width: 42%;"
></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- TEAM -->
<section id="team" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="section-title wow fadeInUp" data-wow-delay="0.1s">
<h2>Meet Us</h2>
</div>
</div>
</div>
<div class="row justify-content-center">
<div
class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card-mod mx-auto"
>
<div class="card-body text-center">
<img
class="profile-img-mod"
src="./images/moderator/Debanwesh_Bose.jpg"
/>
<h4 class="card-title">Debanwesh Bose</h4>
<p class="card-text lead small text-justify">
Machine Learning
</p>
<h5>House Moderator</h5>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/debanwesh-bose-1813ab160"
class="fa fa-linkedin-square"
></a>
</li>
</ul>
</div>
</div>
<div
class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card-mod mx-auto"
>
<div class="card-body text-center">
<img
class="profile-img-mod"
src="./images/moderator/Shanaya_Zaffar.jpg"
/>
<h4 class="card-title">Shanaya Zafar</h4>
<p class="card-text lead small text-justify">
Natural Language Processing
</p>
<h5>House Moderator</h5>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/shanaya-zafar-01a03a177"
class="fa fa-linkedin-square"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="./images/interns/SHWETA SAHA.jpg" />
<h4 class="card-title">Shweta Saha</h4>
<p class="card-text lead small text-justify">
<!-- Artificial Intelligence and Web Development Enthusiast -->
<!-- <br/> -->
Always curious to learn cutting edge technologies. Hobbies are:
Travelling, Eating, Health Club, Reading etc. Interests :
Orating, culinary etc
</p>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/shweta-saha-2161b1181"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/Shwetasaha"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/SIDDHARTH PANDA.jpeg"
/>
<h4 class="card-title">Siddharth Panda</h4>
<p class="card-text lead small text-justify">
<!-- Data Science and Web Development Enthusiast <br/> -->
"I like to describe myself as a person with a lot of curiosity
for anything, be it science, tech ,sociology, anything. Hobbies
: guitar, football, big time foodie!"
</p>
<ul class="social-icon">
<li><a href="https://www.linkedin.com/in/siddharth-panda-66241b36/" class="fa fa-linkedin-square"></a></li>
<li><a href="https://github.com/Sidray-Infinity" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="images/interns/Rahul Bordoloi.jpg"
/>
<h4 class="card-title">Rahul Bordoloi</h4>
<p class="card-text lead small text-justify">
<!-- Artificial Intelligence | Core Programming | Ethical Hacking -->
"Allo! I am Rahul Bordoloi. And I would like to tell you about
myself. I am a national level Taekwondo player and also a black
belt. Also, I am an esports fanatic gamer for R6s. Apart from
this I love travelling, singing and I am a massive fan of Real
Madrid"
</p>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/rahulbordoloi/"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/rahulbordoloi"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="./images/interns/rahul mahato.png" />
<h4 class="card-title">Rahul Mahato</h4>
<p class="card-text lead small text-justify">
<!-- Full Stack Developer -->
"Usually, I watch movies or play games to pass my time. I have no static hobbies as such, but exploring different places is something that always intrigues me."
</p>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/rahul-mahato/"
target="_blank"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/rahul-mahato"
target="_blank"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="./images/interns/ROLI VERMA.jpg" />
<h4 class="card-title">Roli Verma</h4>
<p class="card-text lead small text-justify">
<!-- Android Developer -->
"All good things interest me! Apart from being a coder and
problem solver I am a great orator and dancer and the worst
singer you will ever meet. "
</p>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/roli-verma-689978188"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/RoliVerma"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="images/interns/AAKAR BHARDWAJ.jpg"
/>
<h4 class="card-title">Aakar Bhardwaj</h4>
<p class="card-text lead small text-justify">
<!-- Android Development, Core Programming -->
"I am quite inquisitive having a quest for knowledge and I
always work with a smile on the face. My hobbies are playing
percussion instruments and cricket."
</p>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/aakar-bhardwaj-491889194"
class="fa fa-linkedin-square"
></a>
</li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="images/interns/Tanusri.jpg" />
<h4 class="card-title">Tanusri Saha</h4>
<p class="card-text lead small text-justify">
"My hobbies include watching series and listening Arijit's Song
whenever I get free time. "
</p>
<ul class="social-icon">
<li>
<a
href="linkedin.com/in/tanusri-saha-273492188"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https:/github.com/Tanusri98"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="images/interns/KUSHAGRA ANAND.jpg"
/>
<h4 class="card-title">Kushagra Anand</h4>
<p class="card-text lead small text-justify">
<!-- Artificial Intelligence and Programming Enthusiast -->
"I am a full time gamer and exploring the world of Computer
Vision."
</p>
<ul class="social-icon">
<li>
<a
href="linkedin.com/in/kushagra-anand-227510161"
class="fa fa-linkedin-square"
></a>
</li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="images/interns/Rishu Singh.jpg" />
<h4 class="card-title">Rishu Singh</h4>
<p class="card-text lead small text-justify">
I am an organised and responsible person and my hobbies and
interests include writing,music,and reading.
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="images/interns/SURYANARAYAN RATH.jpg"
/>
<h4 class="card-title">Suryanarayan Rath</h4>
<p class="card-text lead small text-justify">
<!-- Web Development, Core Programming, Augmented Reality -->
A bit enthusiast towards JAVA. Specialized in Web-Development in
JAVA and Node.JS
</p>
<ul class="social-icon">
<li>
<a
href="https:/www.linkedin.com/in/suryanarayan-rath-13trv/"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/surya-trv-13"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="images/interns/Naman Prabhakar.jpg"
/>
<h4 class="card-title">Naman Prabhakar</h4>
<p class="card-text lead small text-justify">
"I like to read a lot. I also like to cook. Apart from these I
like sports, indoor as well as outdoor. I like to play chess,
Badminton, Football. In my free time these days I am solving
didi ki puzzles and play ludo. Past few days I am also enjoying
coding in Option for the Highradius internship."
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="images/interns/KM SAKSHI VERMA.jpeg"
/>
<h4 class="card-title">Sakshi Verma</h4>
<p class="card-text lead small text-justify">
<!-- Data Science and Web Development -->
"I have a variety of hobbies like singing, dancing , poem and
content writing.I am a machine learning enthusiast also into
research projects. Apart from these I also play chess , do
volunteer work and community activities. I volunteer a couple of
hours per week at a social services organization and teach
underprivileged children. "
</p>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/sakshi-verma08/"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/Sakshi0810/"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="images/interns/PRATEEK TIWARY.jpg"
/>
<h4 class="card-title">Prateek Tiwary</h4>
<p class="card-text lead small text-justify">
"My name is Prateek Tiwary and I belong to Ranchi, Jharkhand.
I'm pursuing B.Tech in Electronics and Telecommunication
Engineering from KIIT University. I like playing guitar and I
also enjoy to play video games in my leisure time."
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="images/interns/AYUSH AGRAWAL.jpg" />
<h4 class="card-title">Ayush Agarwal</h4>
<p class="card-text lead small text-justify">
<!-- Artificial Intelligence, Core Programming -->
I am a foodie and an otaku. I barely take anything seriously but
when I do then I try to give it my all. I like being humourous
even am not good at it XD.
</p>
<ul class="social-icon">
<li>
<a
href="https://www.linkedin.com/in/ayush-agrawal-3698a9151/"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/Ayush-Agrawal-2609"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="images/interns/SURYANARAYAN RATH.jpg"
/>
<h4 class="card-title">Suryanarayan Rath</h4>
<p class="card-text lead small text-justify">
<!-- Web Development, Core Programming, Augmented Reality -->
A bit enthusiast towards JAVA. Specialized in Web-Development in
JAVA and Node.JS
</p>
<ul class="social-icon">
<li>
<a
href="https:/www.linkedin.com/in/suryanarayan-rath-13trv/"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/surya-trv-13"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="images/interns/VANDANA MALL.jpg" />
<h4 class="card-title">Vandana Mall</h4>
<p class="card-text lead small text-justify">
<!-- Android Development, IOT, Core Programming -->
A friendly nature & not getting flustered easily with unexpected
challenges with an interest to learn new technologies & imply
practically & painting is my hobby.
</p>
<ul class="social-icon">
<li>
<a
href="https:/www.linkedin.com/in/vandana-mall-25941716a"
class="fa fa-linkedin-square"
></a>
</li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/CHIRAYATA CHATTERJI.jpg"
/>
<h4 class="card-title">Chirayata Chatterji</h4>
<p class="card-text lead small text-justify">
<!-- Web Development, Core Programming -->
Sketching, doodling, reading and writing suspense and horror
stories
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="images/interns/AAYUSH SAHAY.jpg" />
<h4 class="card-title">Aayush Sahay</h4>
<p class="card-text lead small text-justify">
<!-- Android Development -->
"I am a CSE student from KIIT who has got an internship into
high radius. I like getting my hands dirty on coding. My hobbies
are playing Chess and Badminton."
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li>
<a
href="https://github.com/theashggl"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/SYED MOHAMMAD SARIM.jpg"
/>
<h4 class="card-title">Syed Mohammad Sarim</h4>
<p class="card-text lead small text-justify">
<!-- Core Programming -->
"I am pearson who likes to have a lot friends around me though
my shyness can be misleading at times. I love football and I am
an absolute fan of Ghibli movies. "
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/HITESH BARIK.jpg"
/>
<h4 class="card-title">Hitesh Barik</h4>
<p class="card-text lead small text-justify">
<!-- Cloud Computing -->
"I enjoy reading articles about politics, defense, technology,
and self-development, and one of my interests would be writing
about new technologies and political economy."
</p>
<ul class="social-icon">
<li>
<a
href="https:/www.linkedin.com/in/hitesh-barik-234256142/"
class="fa fa-linkedin-square"
></a>
</li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/SOURAV RANJAN MISHRA.jpg"
/>
<h4 class="card-title">Sourav Ranjan Mishra</h4>
<p class="card-text lead small text-justify">
<!-- Core Programming -->
"Hello Myself Sourav Ranjan Mishra. About my hobbies:- Reading
novels(specially thriller genre), playing video games."
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/ANKITA ADHIKARY.jpg"
/>
<h4 class="card-title">Ankita Adhikary</h4>
<p class="card-text lead small text-justify">
<!-- Web Development, Artificial Intelligence, Android Development,
Core Programming -->
"I am a fun loving person whose interest lies in painting and I
have done Diploma in Classical Kathak Nritya. "
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/AAKASH MOHTA.jpg"
/>
<h4 class="card-title">Aakash Mohta</h4>
<p class="card-text lead small text-justify">
<!-- Web Development, Android Development, Core Programming, Cloud
Computing -->
"First of all I would like to state that I love swimming. Having
said that, I also like playing volleyball and chess and yes I
love coding too. I also like watching horror movies and series."
</p>
<ul class="social-icon">
<li>
<a
href="https:/www.linkedin.com/in/aakash-mohta-16a53a167"
class="fa fa-linkedin-square"
></a>
</li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/PRAGYA CHAUDHARY.jpg"
/>
<h4 class="card-title">Pragya Chaudhary</h4>
<p class="card-text lead small text-justify">
<!-- Artificial Intelligence, Core Programming -->
"I'm a passionate reader. Leave me in a room full of novels and
I shall happily spend the rest of my life in there! Full time
dreamer, I believe in magic and unicorns and fairytales. Biggest
aim in life is to grow as a person everyday and live to the
fullest. I'm passionate about my work as well."
</p>
<ul class="social-icon">
<li><a href="#" class="fa fa-linkedin-square"></a></li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img class="profile-img" src="images/interns/RITAM BARIK.jpg" />
<h4 class="card-title">Ritam Barik</h4>
<p class="card-text lead small text-justify">
<!-- Artificial Intelligence, Core Programming -->
"I like competitive coding hence try to take part in global
coding competitions like hash code etc. Apart from this my hobby
is Story Book Reading and travelling."
</p>
<ul class="social-icon">
<li>
<a
href="https:/www.linkedin.com/in/ritam-barik-557905195/"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a
href="https://github.com/RITAM-BARIK"
class="fa fa-github"
></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/RITESH MISHRA.jpg"
/>
<h4 class="card-title">Ritesh Mishra</h4>
<p class="card-text lead small text-justify">
<!-- Artificial Intelligence, Core Programming -->
"Reading books and doing courses to enhance my skills."
</p>
<ul class="social-icon">
<li>
<a
href="https:/www.linkedin.com/in/riteshmishra478"
class="fa fa-linkedin-square"
></a>
</li>
<li>
<a href="github.com/mishraritesh" class="fa fa-github"></a>
</li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/SHRUTI KESHRI.jpg"
/>
<h4 class="card-title">Shruti Keshri</h4>
<p class="card-text lead small text-justify">
<!-- Android Development, Core Programming, IoT -->
"I am someone who loves nature with a keen interest for thriller
movies/series. One of my hobbies is painting."
</p>
<ul class="social-icon">
<li>
<a
href="https:/www.linkedin.com/in/shruti-keshri-581aa9159/"
class="fa fa-linkedin-square"
></a>
</li>
<li><a href="#" class="fa fa-github"></a></li>
</ul>
</div>
</div>
<div class="card col-lg-3 col-md-4 col-sm-6 col-xs-12 wow fadeInUp profile-card">
<div class="card-body text-center">
<img
class="profile-img"
src="./images/interns/SIDDHARTHA MAITRA.jpg"
/>