-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
972 lines (897 loc) · 55.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Abishek Narayan V</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<link href='https://fonts.googleapis.com/css?family=Outfit' rel='stylesheet'>
</head>
<style>
html {
scroll-behavior: smooth;
}
</style>
<body>
<header>
<section class="section1">
<div class="container">
<div class="navigation">
<div class="nav1">
<i class='bx bx-laptop'></i>
<h5>Write Less Code More :)</h5>
</div>
<div class="nav2">
<a href="#me">Who am i</a>
<a href="#expertise">Expertise</a>
<a href="#awards">Awards & Certifications</a>
<a href="#Projects">Projects</a>
<a href="#education">Education</a>
<a href="#contact">contact</a>
<i class='bx bx-x' onclick="closeMenu()"></i>
</div>
<i class='bx bx-menu' onclick="openMenu()"></i>
</div>
</div>
</section>
</header>
<main>
<p id="me"></p>
<section class="section1">
<div class="container">
<div class="whoAmI">
<div class="bio">
<h4>HELLO</h4>
<h1><span>I'm </span><span>Abishek Narayan V</span></h1>
<p>
I am a <b>Full Stack Engineer</b> specializing in front-end development, currently working
as a <b>Programmer Analyst</b> at <b>Cognizant Technology Solutions</b>. My journey with
Cognizant began during my undergraduate program, where I was selected through on-campus
placement recruitment. I joined as an intern in my seventh semester and excelled through
three evaluation stages—<b>Qualifier, Interim-Check, and Final SME</b>—held in Bangalore.
Following the successful completion of all stages, I transitioned into a full-time role
with a strong focus on delivering seamless user experiences, tackling complex technical
challenges, and collaborating with cross-functional teams, I am dedicated to integrating
innovative solutions that drive product success and elevate customer satisfaction. My
expertise lies in implementing robust front-end solutions and developing efficient back-end
architectures, making me a versatile contributor in dynamic, fast-paced environments.
In addition to my role at Cognizant, I am pursuing a <b>Master of Technology in Computer
Science and Engineering</b>, specializing in Full Stack Development (part-time) at
<b>SRM Institute of Science and Technology, Chennai</b>. This advanced study complements my
professional experience, equipping me with cutting-edge skills and knowledge to further
enhance my impact as a Full Stack Engineer.
</p>
<a href="#" id="hireLink" onclick="handleClick(event)">Hire</a>
<a href="#contact">Connect</a>
</div>
<div class="myPic">
<img src="assets/College/clgPic3.jpg" alt="">
</div>
</div>
</div>
</section>
<p id="expertise"></p>
<section class="section2">
<div class="container">
<div class="skill">
<div class="logoGroup">
<div class="logoGroup1">
<img src="assets/images/expertise.jpg" alt="">
</div>
<div class="logoGroup2">
<img src="assets/images/ts.jpg" alt="">
<img src="assets/images/bootstrap.jpg" alt="">
<img src="assets/images/saas.jpg" alt="">
</div>
<div class="logoGroup3">
<img src="assets/images/mean.jpg" alt="">
</div>
</div>
<div class="expertise">
<h4>WHAT AM I EXPERTISE WITH ?</h4>
<h2>I Specialize in developing Web and Mobile Application Using MEAN as Key Technology Stack
</h2>
<ul>
<li>MongoDB for database management</li>
<li>Express.js for backend web framework</li>
<li>Angular for client-side frontend framework</li>
<li>Node.js for the backend runtime environment</li>
</ul>
<p>In addition to my expertise with frameworks, I have experience creating dynamic and
responsive web pages without them, using pure HTML5 and CSS3 for responsive web design
(RWD). I can also build frontend web applications with native JavaScript and Vanilla
JavaScript for simple user interfaces.</p>
<a target="_blank" href="assets/CV/ABISHEK NARAYAN V - Resume.pdf" download>Download CV</a>
</div>
</div>
</div>
</section>
<p id="awards"></p>
<section class="switching1">
<div class="container">
<div class="switch">
<div class="switch1">
<h5>Recognition</h5>
<i class='bx bx-award'></i>
<span>click here</span>
</div>
<div class="switch2">
<h5>Certification</h5>
<i class='bx bx-certification'></i>
<span>click here</span>
</div>
</div>
</div>
</section>
<section class="section3">
<div class="container">
<div class="industryRecognition">
<div class="awards">
<div class="awardsImage">
<img src="assets/images/awards.jpg" alt="">
</div>
<div class="awardsDetail">
<h4>AWARDS AND RECOGNITION</h4>
<h2>At Cognizant</h2>
<p>In Bangalore, based on my outstanding performance, I was recognized and received a
certificate of appreciation from the Leaders at Cognizat Technology Solution in 2023</p>
<a target="_blank"
href="https://news.cognizant.com/2019-08-23-Cognizant-Wins-22-Awards-for-Excellence-in-Learning-from-the-Brandon-Hall-Group">Search</a>
</div>
</div>
<div class="awards">
<div class="awardsImage">
<img src="assets/Awards & Recognization/GenC-TechieAward.png" alt="">
</div>
<div class="awardsDetail">
<h2>Techie Award</h2>
<p>The award recognizes exemplary performance in the qualifier assessment, Interim-checks
and Final SME-evaluations within the INTDX23CA001 Cohort in Channels Angular.I achieved
the top position among all locations in india</p>
<a href="assets/Awards & Recognization/GenC-TechieAward.png" download>Download Award.<i
class='bx bxs-file-png bx-xm'></i></a>
</div>
</div>
<div class="awards">
<div class="awardsImage">
<img src="assets/Awards & Recognization/GenC-SuperSqaudAward.png" alt="">
</div>
<div class="awardsDetail">
<h2>Super Squad Award</h2>
<p>The award recognizes exceptional leadership, teamwork, and collaboration, demonstrated
through a high level of integrity during the completion of the training period in the
INTDX23CA001 Cohort.</p>
<a href="assets/Awards & Recognization/GenC-SuperSqaudAward.png" download>Download Award.<i
class='bx bxs-file-png bx-xm'></i></a>
</div>
</div>
</div>
</div>
</section>
<section class="section4">
<div class="container">
<div class="certifications">
<h4>LICENSE AND CERTIFICATIONS</h4>
<h2>Amazon Web Services</h2>
<div class="fullStack">
<div class="fullStackImage">
<img src="assets/Certifications/AWS/AWS Certified Cloud Practitioner - Abishek Narayan V.png"
alt="">
<a target="_blank"
href="assets/Certifications/AWS/AWS Certified Cloud Practitioner.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<h2>Angular 17</h2>
<div class="fullStack">
<div class="fullStackImage">
<img src="assets/Certifications/Angular/Angular Crash Course For Busy Developers.png"
alt="">
<a target="_blank"
href="assets/Certifications/Angular/Angular Crash Course For Busy Developers.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/Angular/Angular - The Complete Guide (2024 Edition).png"
alt="">
<a target="_blank"
href="assets/Certifications/Angular/Angular - The Complete Guide (2024 Edition).pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/Angular/Angular Testing Masterclass (Angular 17).png"
alt="">
<a target="_blank"
href="assets/Certifications/Angular/Angular Testing Masterclass (Angular 17).pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<h2>GitHub Copilot For Angular Developers , GitHub Copilot with AI</h2>
<div class="fullStack">
<div class="fullStackImage">
<img src="assets/Certifications/GitHub Copilot/GitHub Copilot Angular Developers Knowledge Based Assessment [201-Intermediate].png"
alt="">
<a target="_blank"
href="assets/Certifications/GitHub Copilot/GitHub Copilot Angular Developers Knowledge Based Assessment [201-Intermediate].pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/GitHub Copilot/GitHub Copilot - Use AI to Write code for you.png"
alt="">
<a target="_blank"
href="assets/Certifications/GitHub Copilot/GitHub Copilot - Use AI to Write code for you.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<h2>HTML 5 , CSS 3 , BOOTSTRAP 5</h2>
<div class="fullStack">
<div class="fullStackImage">
<img src="assets/Certifications/Html, CSS and Bootstrap/web Design For Begineers - Real World Coding in HTML & CSS.png"
alt="">
<a target="_blank"
href="assets/Certifications/Html, CSS and Bootstrap/web Design For Begineers - Real World Coding in HTML & CSS.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/Html, CSS and Bootstrap/Build Responsive Real-World Websites with HTML and CSS.png"
alt="">
<a target="_blank"
href="assets/Certifications/Html, CSS and Bootstrap/Build Responsive Real-World Websites with HTML and CSS.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/Html, CSS and Bootstrap/Bootstrap 5 Course - The complete Guide Step by Step (2024).png"
alt="">
<a target="_blank"
href="assets/Certifications/Html, CSS and Bootstrap/Bootstrap 5 Course - The complete Guide Step by Step (2024).pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<h2>JavaScript , ES6 , JSON with JavaScript</h2>
<div class="fullStack">
<div class="fullStackImage">
<img src="assets/Certifications/Js, ES6 and TS/JavaScript Basics For Begineers.png" alt="">
<a target="_blank"
href="assets/Certifications/Js, ES6 and TS/JavaScript Basics For Begineers.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/Js, ES6 and TS/ES6 JavaScript - The Complete Developers Guide.png"
alt="">
<a target="_blank"
href="assets/Certifications/Js, ES6 and TS/ES6 JavaScript - The Complete Developers Guide.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/Js, ES6 and TS/JSON - Begineers Guide To Learning JSON with JavaScript.png"
alt="">
<a target="_blank"
href="assets/Certifications/Js, ES6 and TS/JSON - Begineers Guide To Learning JSON with JavaScript.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<h2>TypeScript , Node.js , GIT</h2>
<div class="fullStack">
<div class="fullStackImage">
<img src="assets/Certifications/Js, ES6 and TS/Typescript - The Complete Developers Guide.png"
alt="">
<a target="_blank"
href="assets/Certifications/Js, ES6 and TS/Typescript - The Complete Developers Guide.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/Node, GIT/The Complete Node.js Developer Course(3rd Edition).png"
alt="">
<a target="_blank"
href="assets/Certifications/Node, GIT/The Complete Node.js Developer Course(3rd Edition).pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/Node, GIT/GIT Complete - The definitive, step-by-step guide to Git.png"
alt="">
<a target="_blank"
href="assets/Certifications/Node, GIT/GIT Complete - The definitive, step-by-step guide to Git.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<h2>MongoDB , MongoDB 2</h2>
<div class="fullStack">
<div class="fullStackImage">
<img src="assets/Certifications/MongoDB/The Complete Developers Guide To MongoDB.png"
alt="">
<a target="_blank"
href="assets/Certifications/MongoDB/The Complete Developers Guide To MongoDB.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/MongoDB/MongoDB - The Complete Developers Guide 2024.png"
alt="">
<a target="_blank"
href="assets/Certifications/MongoDB/MongoDB - The Complete Developers Guide 2024.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="fullStackImage">
<img src="assets/Certifications/MongoDB/Intoduction to MongoDB 2.png" alt="">
<a target="_blank"
href="assets/Certifications/MongoDB/Intoduction to MongoDB 2.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<h2>Agile - Project Management</h2>
<div class="fullStack">
<div class="fullStackImage">
<img src="assets/Certifications/Agile/Agile Crash Course - Agile Project Management, Agile Delivery.png"
alt="">
<a target="_blank"
href="assets/Certifications/Agile/Agile Crash Course - Agile Project Management, Agile Delivery.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<h2>Professional Development Program</h2>
<div class="udemyProfessional">
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/300+Phrasal Verbs Spoken English.png"
alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/300+Phrasal Verbs Spoken English Vocabulary 4 Conversation.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/50 english phrases.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/50 english Phrases,Idioms and expressions for ESL Students.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/american english.png " alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/American English Pronunciation.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/building your english brain.png"
alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/Building Your English Brain.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/business english.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/Business English - Easy english for meeting.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/business skills.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/Business Skills Email Etiquette Everyone should Know.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/decision making.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/Decision Making Solve Problems with Emotional Intelligence.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/email etiquette.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/Email Etiquette - Write More Effective Emails at Work.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/english grammar launch.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/English Grammar Launch.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/english punctuation.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/english punctuation made easy.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/master your decision.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/Master your Decision - Making and Critical Thinking Skills.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
<div class="udemyProfessionalImage">
<img src="assets/Certifications/Professional Development/write better emails.png" alt="">
<a target="_blank"
href="assets/Certifications/Professional Development/write better emails - tactics for smarter team communication.pdf">Download
Certificate<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<p id="Projects"></p>
<section class="switching2">
<div class="container">
<div class="switch">
<div class="switch1">
<h5>Applied Projects</h5>
<i class='bx bx-code-alt'></i>
<span>click here</span>
</div>
<div class="switch2">
<h5>University Projects</h5>
<i class='bx bxl-product-hunt'></i>
<span>click here</span>
</div>
</div>
</div>
</section>
<section class="section5">
<div class="container">
<h4>PROJECTS COMPLETED FOR IMMERSIVE, REAL-LIFE EXPERIENCE</h4>
<div class="project" id="project1" onclick="toggleProject(1)">
<h3>PROJECT - 1</h3>
</div>
<div class="projectDetail" id="projectDetail1">
<video class="lazy-video" controls autoplay muted loop style="margin-top: 30px;" width="320">
<source src="assets/HandsOnProjects/PayEase-App - Copy.webm" type="video/webm">
<source src="assets/HandsOnProjects/PayEase-App.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p>PayEase-App (MEAN Stack) Integrated With PayPal Developer Sandbox For Payment Gateways</p>
</div>
<div class="project" id="project2" onclick="toggleProject(2)">
<h3>PROJECT - 2</h3>
</div>
<div class="projectDetail" id="projectDetail2">
<video class="lazy-video" controls autoplay muted loop style="margin-top: 30px;" width="320">
<source src="assets/HandsOnProjects/UI-A2B Restaurant Event Registration App - Copy.webm"
type="video/webm">
<source src="assets/HandsOnProjects/UI-A2B Restaurant Event Registration App.mp4"
type="video/mp4">
Your browser does not support the video tag.
</video>
<p>UI-A2B Restaurant Event Registration App</p>
</div>
<div class="project" id="project3" onclick="toggleProject(3)">
<h3>PROJECT - 3</h3>
</div>
<div class="projectDetail" id="projectDetail3">
<video class="lazy-video" controls autoplay muted loop style="margin-top: 30px;" width="320">
<source src="assets/HandsOnProjects/MyPortfolio - Copy.webm"
type="video/webm">
<source src="assets/HandsOnProjects/MyPortfolio.mp4"
type="video/mp4">
Your browser does not support the video tag.
</video>
<p>Portfolio Application</p>
</div>
</div>
</section>
<section class="section6">
<div class="container">
<h4>MINOR AND FINAL-YEAR ACADEMIC PROJECTS DURING MY BACHELOR'S DEGREE</h4>
<div class="project" id="ugProject1" onclick="toggleUgProject(1)">
<h3>MINOR PROJECT</h3>
</div>
<div class="projectDetail" id="ugProjectDetail1">
<div class="project-summary">
<p><strong>Objective:</strong> Develop a virtual mouse system that uses hand gestures to control
cursor movement and perform basic computer actions without hardware like a traditional
mouse.</p>
<p><strong>Key Features:</strong></p>
<ul>
<li>Utilizes computer vision and color detection to track hand gestures with a webcam.</li>
<li>Supports basic operations such as cursor movement, left-click, drag-and-drop, and file
transfer between connected systems.</li>
<li>Implemented with Python and OpenCV, leveraging adaptive algorithms to detect hand
regions and control mouse actions.</li>
<li>Performance measured with accuracy in hand gesture recognition for different commands,
visualized using success rate metrics.</li>
</ul>
<p><strong>Future Enhancements:</strong> Optimizing accuracy under varying lighting conditions
and expanding to mobile platforms, where gestures could replace traditional touchscreen
interactions.</p>
</div>
<div class="project-file">
<h5>View Project Report</h5>
<iframe
src="https://docs.google.com/presentation/d/1NTfko5meKvHen4DkozGycaCEFdDl_1IF/embed?start=true&loop=true&delayms=1900"
frameborder="0" width="320" height="200" allowfullscreen></iframe>
<p>Handheld Cursor Control Using Machine Learning</p>
</div>
</div>
<div class="project" id="ugProject2" onclick="toggleUgProject(2)">
<h3>FINAL YEAR PROJECT</h3>
</div>
<div class="projectDetail" id="ugProjectDetail2">
<div class="project-summary">
<p><strong>Objective:</strong> Forecast health insurance premium eligibility using advanced
machine learning algorithms, providing a data-driven approach for personalized insurance
policies.</p>
<p><strong>Key Features:</strong></p>
<ul>
<li>Data Collection: Acquired diverse insurance datasets from multiple sources, emphasizing
quality for accurate predictions.</li>
<li>Data Preprocessing: Employed techniques to clean data, remove null values, and scale
features using <code>LabelEncoder</code> and <code>MinMaxScaler</code>.</li>
<li>Feature Extraction: Identified and extracted critical attributes (e.g., age, gender,
smoking status) influencing premium rates.</li>
<li>Algorithms: Implemented supervised learning algorithms, focusing on Linear Regression,
Stochastic Gradient Descent, and Multi-layer Perceptron (MLP) for optimal accuracy.</li>
<li>Performance Metrics: Evaluated model accuracy and stability with metrics like accuracy
scores and a confusion matrix, achieving high predictive reliability.</li>
</ul>
<p><strong>Implementation Highlights:</strong></p>
<ul>
<li>Designed a modular system architecture with Python and Scikit-learn for streamlined
processing.</li>
<li>Utilized machine learning to automate data insights, significantly reducing manual
effort in policy prediction.</li>
<li>Developed UML, sequence, and class diagrams to document and visualize system workflow,
supporting maintainability and scalability.</li>
</ul>
<p><strong>Future Enhancements:</strong> Integrating blockchain for data security, testing
algorithms like Logistic Regression for improved model performance, and adapting the system
for mobile platforms to expand accessibility.</p>
</div>
<div class="project-file">
<h5>View Project Report</h5>
<iframe
src="https://docs.google.com/presentation/d/1OghigHwVtRyUnmc2URNj8KZPZhPQ0sLJ/embed?start=true&loop=true&delayms=1900"
frameborder="0" width="320" height="200" allowfullscreen></iframe>
<p>Health Insurance Premium Prediction Using Machine Learning</p>
</div>
</section>
<p id="education"></p>
<section class="switching3">
<div class="container">
<div class="switch">
<div class="switch1">
<h5>Undergraduate</h5>
<i class='bx bxs-graduation'></i>
<span>click here</span>
</div>
<div class="switch2">
<h5>Pre-University</h5>
<i class='bx bxs-school'></i>
<span>click here</span>
</div>
</div>
</div>
</section>
<section class="section7">
<div class="container">
<div class="education">
<div class="school">
<div class="schoolImage">
<img src="assets/images/velammal.jpg" alt="velammal">
</div>
<div class="schoolDetail">
<h4>MY EARLY EDUCATION IN PRE-UNIVERSITY</h4>
<h2>Pre-University</h2>
<p>I Completed my pre-university education @ Velammal Matriculation Higher Secondary School
in Chennai from 2016 to 2019.During my pre-university years, I took three consecutive
state board eaxamination for classes 10, 11 and 12.After passing class 10, I chose a
Major in Computer Science with subjects including Math, Physics, Chemistry, French and
English</p>
<a target="_blank" target="_blank" href="https://www.velammaltrust.com/">Search</a>
</div>
</div>
<div class="school">
<div class="schoolImage">
<img src="assets/School/School Marksheets/10th Marksheet.png" alt="10th Marksheet">
</div>
<div class="schoolDetail">
<h2>Class : 10th</h2>
<ul>
<li> Studied @ Velammal Matriculation Higher Secondary School </li>
<li>Curriculam Subject : English, Tamil, Math, Science, Social Science</li>
<li>completed between 2016 - 2017</li>
<li>With 91.8 percentage</li>
</ul>
<a target="_blank" href="assets/School/School Marksheets/10th Marksheet.pdf"
download>Download
Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</ul>
</div>
</div>
<div class="school">
<div class="schoolImage">
<img src="assets/School/School Marksheets/11th Marksheet.png" alt="11th Marksheet">
</div>
<div class="schoolDetail">
<h2>Class : 11th</h2>
<ul>
<li> Studied @ Velammal Matriculation Higher Secondary School </li>
<li>Curriculam Subject : French, English, Math, Computer Science, Physics, Chemistry
</li>
<li>completed between 2017 - 2018</li>
<li>With 70 percentage</li>
</ul>
<a target="_blank" href="assets/School/School Marksheets/11th Marksheet.pdf"
download>Download
Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="school">
<div class="schoolImage">
<img src="assets/School/School Marksheets/12th Marksheet.png" alt="12th Marksheet">
</div>
<div class="schoolDetail">
<h2>Class : 12th</h2>
<ul>
<li> Studied @ Velammal Matriculation Higher Secondary School </li>
<li>Curriculam Subject : French, English, Math, Computer Science, Physics, Chemistry
</li>
<li>completed between 2018 - 2019</li>
<li>With 65.1 percentage</li>
</ul>
<a target="_blank" href="assets/School/School Marksheets/12th Marksheet.pdf"
download>Download
Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
</div>
</div>
</section>
<section class="section8">
<div class="container">
<div class="ugDegree">
<div class="university">
<div class="universityImage">
<img src="assets/images/srm.png" alt="">
</div>
<div class="universityDetail">
<h4>MY UG EDUCATION IN UNIVERSITY </h4>
<h2>University</h2>
<p>I Completed my UnderGraduate Degree Program education @ SRM Institute of Science and
Technology in Chennai from 2019 to 2023.</p>
<a target="_blank" href="https://www.srmist.edu.in/">Search</a>
</div>
</div>
<div class="university">
<div class="universityImage">
<img src="assets/College/college Marksheets/degreePic.png" alt="UG Degree">
</div>
<div class="universityDetail">
<h2>UG Degree</h2>
<p>I graduated with First Class honors and distinction,Earning my Bachelor Of Technology
degree in Information Technology .During my UG Degree Program, I engaged in variety of
projects and internships, gaining hands-on experience in software development,I was
actively involved in technology-related events which helped me build solid foundation in
IT</p>
<a target="_blank" href="assets/College/college Marksheets/degree.pdf">Download Degree.<i
class='bx bxs-file-pdf bx-xm'></i></a>
<a target="_blank" href="assets/College/college Marksheets/Semester Marksheets.pdf">Download
All Semester
Marksheets.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="sem">
<div class="semImage">
<img src="assets/College/college Marksheets/sem1.png" alt="sem-1 marksheet.jpg">
</div>
<div class="semDetail">
<h3>Semester : 1</h3>
<p>In my first semester, I took a variety of foundational courses that provided a solid
grounding in preparation for pursuing Information Technology</p>
<ul>
<li>Curriculam Subject : Semiconductor Physics, Calculus and Linear Algebra, Basic
Electrical and Electronics Engineering, Engineering Graphics Design, Professional
Skills and Practices, Physical and Mental Health Using Yoga, Constitution Of India
and English</li>
<li>My SGPA for the Semester was : 6.65</li>
</ul>
<a target="_blank" href="assets/College/college Marksheets/1 st semester marksheet.pdf"
download>Download Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="sem">
<div class="semImage">
<img src="assets/College/college Marksheets/sem2.png" alt="sem-2 marksheet.jpg">
</div>
<div class="semDetail">
<h3>Semester : 2</h3>
<p>In my second semester, I took fundamental courses that provided a solid grounding as i
continued my journey in Information Technology</p>
<ul>
<li>Curriculam Subject : Programming For Problem solving, Advanced Calculus and Complex
Analysis, Chemistry, Civil and Mechanical Engineering Workshop, Value Education,
NSO, General Aptitude and German</li>
<li>My SGPA for the Semester was : 7.57</li>
</ul>
<a target="_blank" href="assets/College/college Marksheets/2 nd semester marksheet.pdf"
download>Download Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="sem">
<div class="semImage">
<img src="assets/College/college Marksheets/sem3.png" alt="sem-3 marksheet.jpg">
</div>
<div class="semDetail">
<h3>Semester : 3</h3>
<p>In my third semester,I Officially began my journey into Information Technology by taking
courses that expanded my knowledge in the field</p>
<ul>
<li>Curriculam Subject : Trandforms and Boundary Value Problems, Management Principles
For Engineers, Analog and Digital Electronics, Object Oriented Design and
Programming, Computer Organization and Architecture, Data Structures and Algorithms,
Competencies in Social Skills and Biology</li>
<li>My SGPA for the Semester was : 9.50</li>
</ul>
<a target="_blank" href="assets/College/college Marksheets/3 rd semester marksheet.pdf"
download>Download Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="sem">
<div class="semImage">
<img src="assets/College/college Marksheets/sem4.png" alt="sem-4 marksheet.jpg">
</div>
<div class="semDetail">
<h3>Semester : 4</h3>
<p> In my Fourth semester, I Continued to build upon my journey into Information Technology
by taking courses that expanded my knowledge in the field</p>
<ul>
<li>Curriculam Subject : Probability and Queueing Theory, Design and Analysis Of
Algorithms, Software Engineering and Project Management, Operating Systems, Advanced
Programming Practice, Computer Communications, Environmental Science, Critical and
Creative Thinking Skills, Competitive and Professional Skills-1 and Social
Engineering,</li>
<li>My SGPA for the Semester was : 9.31</li>
</ul>
<a target="_blank" href="assets/College/college Marksheets/4 th semester marksheet.pdf"
download>Download Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="sem">
<div class="semImage">
<img src="assets/College/college Marksheets/sem5.png" alt="sem-5 marksheet.jpg">
</div>
<div class="semDetail">
<h3>Semester : 5</h3>
<p>In my Fifth semester, I delved deeper into Core Information Technology courses</p>
<ul>
<li>Curriculam Subject : Discrete Mathematics For Engineers, Formal Language and
Automata, Computer Networks, Information Storage and Management, Web Programming,
Quality Control For Biomedical Devices, Indian Traditional Knowledge, Competitive
Professional Skills-2, Analytical and Logical Thinking Skills, Seminar-1</li>
<li>My SGPA for the Semester was : 8.95</li>
</ul>
<a target="_blank" href="assets/College/college Marksheets/5 th semester marksheet.pdf"
download>Download Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="sem">
<div class="semImage">
<img src="assets/College/college Marksheets/sem6.png" alt="sem-6 marksheet.jpg">
</div>
<div class="semDetail">
<h3>Semester : 6</h3>
<p>In my sixth semester, I Started gaining advanced knowledge and technical skills of
Information Technology</p>
<ul>
<li>Curriculam Subject : Employability Skills and Practices, Database Management
Systems, Compiler Design, Artificial Intelligence, Wireless Sensor Networks,
Internet Security and Cyber Forensics, Fiber Optics and Opto Electronics,
Competitive Professional Skills-3, Comprehension, Indian Art Form, Seminar-2</li>
<li>My SGPA for the Semester was : 8.40</li>
</ul>
<a target="_blank" href="assets/College/college Marksheets/6 th semester marksheet.pdf"
download>Download Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="sem">
<div class="semImage">
<img src="assets/College/college Marksheets/sem7.png" alt="sem-7 marksheet.jpg">
</div>
<div class="semDetail">
<h3>Semester : 7</h3>
<p>In my seventh semester, I Started working on my Minor Project and i continued studying
key modules that enhanced my knowledge about Information Technology</p>
<ul>
<li>Curriculam Subject : Minor Project, Integrative Programming and Technology, IT
Service Management and Operations, Short-Range Wireless Communication</li>
<li>My SGPA for the Semester was : 8.39</li>
</ul>
<a target="_blank" href="assets/College/college Marksheets/7 th semester marksheet.pdf"
download>Download Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
<div class="sem">
<div class="semImage">
<img src="assets/College/college Marksheets/sem8.png" alt="sem-8 marksheet.jpg">
</div>
<div class="semDetail">
<h3>Semester : 8</h3>
<p> In my last semester, I Started working on my Major Project and secured an Internship @
Cognizant Technology Solutions</p>
<ul>
<li>Curriculam Subject : Major Project and Internship(Experience Knowledge Check)</li>
<li>My SGPA for the Semester was : 9.70</li>
</ul>
<a target="_blank" href="assets/College/college Marksheets/8 th semester marksheet.pdf"
download>Download Marksheet.<i class='bx bxs-file-pdf bx-xm'></i></a>
</div>
</div>
</div>
</div>
</section>
</main>
<p id="contact"></p>
<footer>
<section class="section1">
<div class="container">
<div class="contact">
<div class="contactLeft">
<h2>
Contact Me
</h2>
<p><i class='bx bx-mail-send'></i>abisheknarayan49@gmail.com</p>
<p><i class="bx bx-phone"></i>9500199077</p>
<div class="socialIcons">
<a target="_blank" href="https://www.instagram.com/_abishek7989_/"><i
class='bx bxl-instagram'></i></a>
<a target="_blank" href="https://www.linkedin.com/in/abishek-narayan-v-a33363307/"><i
class='bx bxl-linkedin-square'></i></a>
<a target="_blank" href="https://github.com/Abishek-49"><i class='bx bxl-github'></i></a>
</div>
<a target="_blank" href="assets/CV/ABISHEK NARAYAN V - Resume.pdf" download>Download CV</a>
</div>
<div class="contactRight">
<form name='submit-to-google-sheet'>
<input type="text" name="Name" placeholder="Your Name" required>
<input type="email" name="Email" placeholder="Your Email" required>
<textarea name="Message" rows="10" placeholder="Your Message"></textarea>
<button type="submit">Submit</button>
<div id="loading" style="font-size: 0.75rem; margin:7px 0;display:none;">Submitting .....
</div>
</form>
</div>
</div>
</div>
</section>
<section class="section2">
<div class="container">
<div class="copyRight">
<p>Copyright <i class='bx bx-copyright'></i> 2024 . All Rights Reserved To Only <span>Abishek
Narayan V.</span> </p>
</div>
</div>
</section>
</footer>
<script src="hamburgerMenu.js"></script>
<script src="hire.js"></script>
<script src="switchingTabs.js"></script>
<script src="contactForm.js"></script>
<!-- <script>
// Lazy load video when it comes into view
const lazyVideos = document.querySelectorAll('.lazy-video');
const loadVideo = (video) => {
const source = video.querySelector('source');
source.src = source.dataset.src;
video.load(); // Load the video content
};
const handleLazyLoad = () => {
lazyVideos.forEach((video) => {
if (video.getBoundingClientRect().top < window.innerHeight) {
loadVideo(video);
}
});
};
window.addEventListener('scroll', handleLazyLoad);
window.addEventListener('resize', handleLazyLoad);
handleLazyLoad(); // Initial check
</script>
<script>
const videoElement = document.querySelector('video');
const lowResVideo = 'video/my-video-low.mp4';
const highResVideo = 'video/my-video-high.mp4';
if (window.innerWidth < 768) {
// If screen size is small (e.g., mobile), use the lower resolution video
videoElement.src = lowResVideo;
} else {
// Otherwise, use the high resolution video
videoElement.src = highResVideo;
}
</script> -->