-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
1601 lines (1575 loc) · 75 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 -->
<title>KARTHIK LAL - Certified Ethical Hacker</title>
<!-- Meta Tags -->
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<meta
name="description"
content="Greetings! I am Karthik Lal, a 24-year-old cybersecurity researcher based in Kerala, India. I am enthusiastic about web development, graphic design, and cybersecurity, and continuously strive to improve my skills in these areas."
/>
<meta
name="keywords"
content="Cybersecurity Expert | Threat Intelligence Specialist | Certified Ethical Hacker | Web Development | Graphic Design | Linux Kernel Development | Cybercrime Prevention | Cybersecurity Education | Network Security | DDOS Mitigation | Phishing Defense | Cyberattack Response | Information Security | Penetration Testing"
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta name="revisit-after" content=" days" />
<meta name="author" content="KARTHIK LAL" />
<meta name="copyright" content="KARTHIK LAL" />
<meta
property="og:title"
content="KARTHIK LAL - Certified Ethical Hacker"
/>
<meta
property="og:description"
content="I am Karthik Lal, a 24-year-old cybersecurity researcher based in Kerala, India. I am enthusiastic about web development, graphic design, and cybersecurity, and continuously strive to improve my skills in these areas.!"
/>
<meta
property="og:image"
content="https://karthiklal.in/assets/img/intro/img.png"
/>
<meta property="og:url" content="https://karthiklal.in/" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="KARTHIK LAL - Certified Ethical Hacker"
/>
<meta
name="twitter:description"
content="Cybersecurity Expert | Threat Intelligence Specialist | Certified Ethical Hacker | Web Development | Graphic Design | Linux Kernel Development | Cybercrime Prevention | Cybersecurity Education | Network Security | DDOS Mitigation | Phishing Defense | Cyberattack Response | Information Security | Penetration Testing"
/>
<meta
name="twitter:image"
content="https://karthiklal.in/assets/img/intro/img.png"
/>
<meta name="twitter:site" content="@karthiklal_in" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"url": "https://karthiklal.in",
"name": "Karthik Lal",
"logo": "https://karthiklal.in/assets/img/logo-dark.png",
"sameAs": [
"https://www.instagram.com/_karthiklal",
"https://behance.net/karthik558",
"https://www.facebook.com/karthiklal0",
"https://github.com/karthik558",
"https://www.linkedin.com/in/karthiklal"
],
"potentialAction": {
"@type": "SearchAction",
"target": "https://karthiklal.in/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<!-- Mobile Meta -->
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Favicon -->
<link
rel="shortcut icon"
href="assets/img/favicon/favicon.ico"
type="image/x-icon"
/>
<link
rel="icon"
href="assets/img/favicon/favicon.ico"
type="image/x-icon"
/>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link rel="stylesheet" href="assets/plugins/normalize/normalize.min.css" />
<link
rel="stylesheet"
href="assets/plugins/fontawesome/css/fontawesome-all.min.css"
/>
<link
rel="stylesheet"
href="assets/plugins/swiper/css/swiper-bundle.min.css"
/>
<link
rel="stylesheet"
href="assets/plugins/lightgallery/css/lightgallery.min.css"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<link id="tt-themecss" rel="stylesheet" href="assets/css/dark-style.css" />
</head>
<body
id="body"
class="tt-transition tt-boxed tt-smooth-scroll tt-magic-cursor"
>
<main id="body-inner">
<div id="page-transition">
<div class="ptr-overlay"></div>
<div class="ptr-preloader">
<div class="ptr-prel-content">
<img
src="assets/img/logo-light.png"
class="ptr-prel-image tt-logo-light"
alt="Logo"
/>
</div>
</div>
</div>
<!-- Magic cursor -->
<div id="magic-cursor">
<div id="ball"></div>
</div>
<div id="scroll-container">
<header id="tt-header" class="tt-header-fixed">
<div class="tt-header-inner">
<div class="tt-header-col">
<div class="tt-logo">
<a href="index">
<img
src="assets/img/logo-light.png"
class="tt-logo-light magnetic-item"
alt="Logo"
/>
<img
src="assets/img/logo-dark.png"
class="tt-logo-dark magnetic-item"
alt="Logo"
/>
</a>
</div>
</div>
<div class="tt-header-col">
<div id="tt-ol-menu-toggle-btn-wrap">
<div class="tt-ol-menu-toggle-btn-text-wrap hide-cursor">
<div class="tt-ol-menu-toggle-btn-text">
<span class="text-menu" data-hover="Open">Menu</span>
<span class="text-close">Close</span>
</div>
</div>
<div class="tt-ol-menu-toggle-btn-holder">
<a href="#" class="tt-ol-menu-toggle-btn magnetic-item"
><span></span
></a>
</div>
</div>
<nav class="tt-overlay-menu tt-ol-menu-count">
<div class="tt-ol-menu-holder">
<div class="tt-ol-menu-inner tt-wrap">
<div class="tt-ol-menu-content">
<ul class="tt-ol-menu-list">
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#service">Service</a></li>
<li><a href="#testimonial">Testimonial</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<ul class="tt-ol-menu-social">
<li>
<h6 class="tt-ol-menu-social-heading">
Social Links:
</h6>
</li>
<li>
<a
href="https://www.facebook.com/karthiklal0"
target="_blank"
rel="noopener"
>Facebook</a
>
</li>
<li>
<a
href="https://behance.net/karthik558"
target="_blank"
rel="noopener"
>Behance</a
>
</li>
<li>
<a
href="https://www.linkedin.com/in/karthiklal"
target="_blank"
rel="noopener"
>Linkedin</a
>
</li>
<li>
<a
href="https://github.com/karthik558"
target="_blank"
rel="noopener"
>Github</a
>
</li>
<li>
<a
href="https://www.instagram.com/_karthiklal"
target="_blank"
rel="noopener"
>Instagram</a
>
</li>
</ul>
</div>
</div>
</div>
</nav>
</div>
</div>
</header>
<div id="content-wrap">
<div
id="page-header"
class="ph-full ph-cap-lg ph-ghost-scroll ph-image-cropped ph-content-parallax"
>
<div class="page-header-inner tt-wrap">
<div class="ph-image">
<div class="ph-image-inner">
<img src="assets/img/intro/img.jpg" alt="Image" />
</div>
</div>
<div class="ph-caption max-width-1000">
<div class="ph-caption-subtitle">
<div class="ph-appear">Hi there, I'm</div>
</div>
<h1 class="ph-caption-title">
<div class="ph-appear">
Karthik<br />
Lal
</div>
</h1>
<div class="ph-caption-subtitle">
<div class="ph-appear">
Creative Technologist | Cybersecurity Researcher
</div>
</div>
<div class="ph-appear">
<a
href="https://drive.google.com/file/d/1y1PklhkLbM9iFLGCOP4dFPj6DzDIzd7u/view?usp=sharing"
class="tt-btn tt-btn-dark"
data-cursor="Hire Me"
>
<span class="tt-btn-icon"
><i class="fas fa-download"></i
></span>
<div data-hover="Download CV">Download CV</div>
</a>
</div>
<div class="ph-caption-title-ghost">
<div class="ph-appear">KARTHIK LAL</div>
</div>
</div>
</div>
<div class="tt-scroll-down">
<a
href="#page-content"
class="tt-sd-inner ph-appear"
data-offset="0"
>
<div class="tt-sd-arrow">
<div class="tt-sd-arrow-inner"></div>
</div>
<div class="tt-sd-text">Scroll</div>
</a>
</div>
</div>
<div id="page-content">
<div class="tt-section">
<div class="tt-section-inner tt-wrap">
<div class="tt-row">
<div class="tt-col-lg-9">
<div class="text-xlg anim-fadeinup">
<div class="tt-heading tt-heading-lg margin-bottom-60">
<h3 class="tt-heading-subtitle" id="about">About</h3>
<h2 class="tt-heading-title" data-cursor="Hello">
Hey There!
</h2>
</div>
<p>
I'm a 24-year-old creative with a passion for
<a
href="https://github.com/karthik558"
target="_blank"
rel="noopener"
>technology and design.</a
>
My specialties lie in Cybersecurity, Linux Kernel
Development, Graphic Design, and Web Development. I'm
driven by my desire to craft visually pleasing yet
functional experiences for users, combining technical
know-how with artistic flair.
</p>
<p>
Each project in my portfolio is unique and reflects my
dedication to creating one-of-a-kind solutions. In my
free time, I love exploring my surroundings through
photography, making every experience truly worthwhile.
</p>
</div>
<div class="tt-signature anim-fadeinup margin-top-40">
<img
src="assets/img/signature/signature-light.png"
class="tt-signature-light"
alt="Signature"
/>
<img
src="assets/img/signature/signature-dark.png"
class="tt-signature-dark"
alt="Signature"
/>
</div>
</div>
</div>
<div class="tt-section">
<div class="tt-section-inner">
<div id="portfolio-grid" class="pgi-hover">
<div class="tt-grid ttgr-layout-creative-2 ttgr-gap-4">
<div class="tt-grid-items-wrap isotope-items-wrap">
<div class="tt-grid-item isotope-item people">
<div class="ttgr-item-inner">
<div class="portfolio-grid-item" id="portfolio">
<a
href="https://namashivalaya.org"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/namashivalaya_web.png"
alt="image"
/>
</figure>
</div>
</div>
</a>
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a href="#">Namashivalaya Website</a>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">
Website Development
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tt-grid-item isotope-item creative">
<div class="ttgr-item-inner">
<div class="portfolio-grid-item">
<a
href="https://euclidos.org"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/euclid_web.png"
alt="image"
/>
<div class="new-tag">NEW</div>
</figure>
</div>
</div>
</a>
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a href="#">EuclidOS Web-App</a>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">
Website Development
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tt-grid-item isotope-item people">
<div class="ttgr-item-inner">
<div class="portfolio-grid-item">
<a
href="https://ace-redirect.vercel.app/"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/ace_app.jpg"
alt="image"
/>
</figure>
</div>
</div>
</a>
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a href="#">Ace Redirect Portal</a>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">
Mobile App | Website Development
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tt-grid-item isotope-item nature">
<div class="ttgr-item-inner">
<div class="portfolio-grid-item">
<a
href="#"
class="pgi-image-wrap"
data-cursor="View<br>Project"
>
<div class="pgi-image-holder">
<div class="pgi-image-inner anim-zoomin">
<figure class="pgi-image ttgr-height">
<img
src="assets/img/portfolio/gustcomment_web.png"
alt="image"
/>
</figure>
</div>
</div>
</a>
<div class="pgi-caption">
<div class="pgi-caption-inner">
<h2 class="pgi-title">
<a href="#"
>Guest Comment Portal Website</a
>
</h2>
<div class="pgi-categories-wrap">
<div class="pgi-category">
Website Development
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center anim-fadeinup">
<a
href="portfolio"
class="tt-scrolling-btn all-works-btn"
data-cursor="All<br>Works"
>
<div class="scr-btn-inner ph-appear">
<div class="scr-btn-icon">
<i class="fas fa-arrow-right"></i>
</div>
<div class="scr-btn-spinner">
<svg viewBox="0 0 500 500">
<defs>
<path
d="M50,250c0-110.5,89.5-200,200-200s200,89.5,200,200s-89.5,200-200,200S50,360.5,50,250"
id="textcircle"
></path>
</defs>
<text dy="30" class="scr-btn-text">
<textPath xlink:href="#textcircle">
See All Works - See All Works -
</textPath>
</text>
</svg>
</div>
</div>
</a>
</div>
</div>
</div>
<div
class="tt-section padding-top-xlg-150 padding-bottom-xlg-150"
>
<div class="tt-section-inner tt-wrap">
<div class="tt-row padding-bottom-2-p">
<div class="tt-col-lg-7">
<div
class="tt-heading tt-heading-xlg anim-fadeinup"
id="service"
>
<h3 class="tt-heading-subtitle">Services</h3>
<h2 class="tt-heading-title">My Expertise</h2>
</div>
</div>
</div>
<div class="tt-accordion tt-ac-borders">
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Graphic Design: Visual Storyteller | Branding
Specialist
</h3>
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
A visionary graphic designer, transforming ideas
into captivating visual experiences through
innovative designs, captivating layouts, and
compelling branding strategies.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Security Research: Vulnerability Hunter | Threat
Intelligence Expert
</h3>
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
A relentless cybersecurity investigator, unearthing
hidden vulnerabilities, analyzing threats, and
fortifying digital landscapes to safeguard sensitive
information and ensure airtight defenses.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Web Development: User Experience Architect |
Frontend Wizard
</h3>
</div>
<div class="tt-accordion-caret-wrap">
<div class="tt-accordion-caret-inner magnetic-item">
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
A master of web craftsmanship, weaving intricate
code to construct immersive online worlds, where
seamless user interactions meet stunning aesthetics,
delivering memorable digital experiences.
</p>
</div>
</div>
</div>
</div>
</div>
<div
class="tt-section padding-top-xlg-100 padding-bottom-xlg-150"
>
<div class="tt-section-inner tt-wrap max-width-1700">
<div class="tt-row padding-bottom-2-p">
<div class="tt-col-xl-4">
<div class="tt-heading tt-heading-xlg anim-fadeinup">
<h3 class="tt-heading-subtitle">Experiences</h3>
<h2 class="tt-heading-title">Career Highlights</h2>
</div>
<div
class="max-width-600 margin-bottom-60 anim-fadeinup"
></div>
</div>
<div class="tt-col-xl-1"></div>
<div class="tt-col-xl-7">
<div class="tt-accordion tt-ac-borders">
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3
class="tt-ac-head-title"
data-cursor="Present"
>
Information Technology Executive
<span>(Incharge)</span>
</h3>
<div class="tt-accordion-subtext">
The Paul John Hotels & Resorts
</div>
<div class="tt-accordion-subtextDate">
April 2022 - Present
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
● Analyze, troubleshoot, and configure network
systems to ensure optimal performance and
connectivity.<br />
● Identify and resolve server-related issues,
ensuring smooth operation and availability of
services.<br />
● Configure and maintain firewalls, implementing
security measures to protect the network from
unauthorized access and threats.<br />
● Conduct network security penetration testing
to identify vulnerabilities and propose
remediation strategies.<br />
● Attend guest calls and admin calls, providing
technical support and addressing any issues or
inquiries promptly and professionally.<br />
● Install and configure access points (AP) to
enable wireless connectivity in different areas
of the network.<br />
● Perform crimping of network cables to ensure
proper connections and efficient data
transmission.<br />
● Design, develop, and maintain websites,
creating visually appealing and functional
interfaces that meet business requirements.<br />
● Design posters and banners for marketing and
promotional purposes, ensuring visually
compelling graphics that align with brand
guidelines.<br />
● Configure and implement Active Directory
services, managing user accounts, groups, and
permissions for centralized network
authentication and authorization.<br />
● Troubleshoot and resolve Active Directory
issues, ensuring smooth user authentication and
access to network resources.<br />
● Implement Group Policy Objects (GPOs) to
enforce security policies, manage user settings,
and control system configurations across the
network.<br />
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Graphic Designer
</h3>
<div class="tt-accordion-subtext">
Team Signin
</div>
<div class="tt-accordion-subtextDate">
January 2022 - April 2022
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
● Design visually appealing posters, flyers, and
AD posters for various marketing and promotional
purposes. <br />
● Create manipulation and mockup designs,
showcasing products or concepts in a visually
compelling manner.<br />
● Design posters specifically for fashion
branding, incorporating elements that align with
the brand's style and target audience.<br />
● Perform web application penetration testing
using tools like Burpsuite, Hydra, and Acunetix
to identify vulnerabilities and recommend
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Network Support Executive
</h3>
<div class="tt-accordion-subtext">
Lemon Tree Hotels & Resorts
</div>
<div class="tt-accordion-subtextDate">
December 2019 - December 2021
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
● Perform network analysis, troubleshooting, and
configuration to ensure efficient network
operations. <br />
● Install various operating systems (Server
2012-2016, Windows 10,7) on devices.<br />
● Provide WiFi assistance and engineering to
ensure reliable wireless connectivity.<br />
● Install and configure access points (AP) to
enable wireless connectivity in different areas
of the network.<br />
● Offer network support and promptly resolve
technical issues.<br />
● Handle guest and admin calls, addressing
inquiries and providing necessary assistance.<br />
● Troubleshoot and efficiently resolve problems
with PC's and server PC's.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Hardware and Network Support Intern
</h3>
<div class="tt-accordion-subtext">
MaxTech Solutions
</div>
<div class="tt-accordion-subtextDate">
February 2019 - August 2019
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
● Provide comprehensive technical support for
hardware and software, diagnosing and resolving
issues promptly and effectively. <br />
● Install software applications such as media
players, Adobe apps, Tally, etc., ensuring
proper configuration and compatibility.<br />
● Perform OS installations for Linux and
Windows, ensuring smooth and error-free
setup.<br />
● Configure and install wireless printers,
enabling seamless printing operations across
devices.<br />
● Execute crimping techniques for network
cables, ensuring proper connections and
efficient data transmission.<br />
● Demonstrate expertise in chip-level repairs
and troubleshooting of laptop boards, ensuring
optimal performance and functionality.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class="tt-section padding-top-xlg-100 padding-bottom-xlg-150"
>
<div class="tt-section-inner tt-wrap max-width-1700">
<div class="tt-row padding-bottom-2-p">
<div class="tt-col-xl-4">
<div class="tt-heading tt-heading-xlg anim-fadeinup">
<h3 class="tt-heading-subtitle">Education</h3>
<h2 class="tt-heading-title">Academic Credentials</h2>
</div>
<div
class="max-width-600 margin-bottom-60 anim-fadeinup"
></div>
</div>
<div class="tt-col-xl-1"></div>
<div class="tt-col-xl-7">
<div class="tt-accordion tt-ac-borders">
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3
class="tt-ac-head-title"
data-cursor="Pursuing"
>
Bachelor of Computer Application (BCA)
</h3>
<div class="tt-accordion-subtext">
Bharathiar University Coimbatore
</div>
<div class="tt-accordion-subtextDate">
September 2021 - August 2024
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
My goal at Bharathiar University is to earn my
BCA degree. Through this program, I plan to gain
knowledge and skills for computer applications -
programming, software development, database
administration, network administration.
Furthermore, my aim is to excel academically as
I pursue an exciting and fulfilling career path
within this industry.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
DWA - Diploma in Web Designing & Animation
</h3>
<div class="tt-accordion-subtext">
G-TECH Education Center Haripad
</div>
<div class="tt-accordion-subtextDate">
September 2019 - December 2019
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
Once passionate about front-end development and
designing responsive websites, my focus has
recently broadened. While still appreciating my
previous experience as a front-end developer,
this new venture allows me to embrace fresh
challenges while searching for my evolving
passions within this vast ecosystem.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Zion Certified Computer Hardware and
Networking Professional (ZCHNP)
</h3>
<div class="tt-accordion-subtext">
Zion Computer Hardware and Networking Center -
Kochi
</div>
<div class="tt-accordion-subtextDate">
April 2018 - June 2019
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
Armed with my ZCHNP certification from ZION IT
Company, I embarked on an exciting networking
adventure. This certification greatly expanded
my foundational knowledge and abilities related
to computer hardware and networking; making me
confidently configure, troubleshoot and maintain
network systems with confidence. Now equipped to
take on new challenges while expanding my
abilities further. Contributing towards
technological innovations.
</p>
</div>
</div>
<div class="tt-accordion-item anim-fadeinup">
<div class="tt-accordion-heading">
<div class="tt-ac-head cursor-alter">
<h3 class="tt-ac-head-title">
Plus Two - Commerce (Computer Application)
</h3>
<div class="tt-accordion-subtext">
KKKVMHSS Haripad
</div>
<div class="tt-accordion-subtextDate">
June 2016 - March 2018
</div>
</div>
<div class="tt-accordion-caret-wrap">
<div
class="tt-accordion-caret-inner magnetic-item"
>
<div class="tt-accordion-caret"></div>
</div>
</div>
</div>
<div class="tt-accordion-content max-width-800">
<p>
As part of my higher education, I focused on
Commerce with Computer Application, developing
in-depth knowledge of commerce principles while
sharpening computer application skills like
programming and data management to effectively
combine commerce with technology for rewarding
career prospects.
</p>
</div>
</div>
</div>