-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2357 lines (2354 loc) · 170 KB
/
index.html
File metadata and controls
2357 lines (2354 loc) · 170 KB
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>
<!-- This site was created By ©Arun. https://www.github.com/SavageArun -->
<!-- Last Published: Wed May 24 2023 08:31:10 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-domain="Savagearun.github.io/pro3" data-wf-page="63677e775f717a9403b140e1" data-wf-site="6198dedd072a1191e8d6758c" lang="en">
<head>
<meta charset="utf-8" />
<title>ARUN KUMAR | PORTFOLIO</title>
<meta content="Social Impact Consulting Enthusiast | Love Developing Efficient Tech Solutions | Passionate about Developing cool website and application Currently Persuing BCA 2nd year and Software Development." name="description" />
<meta content="ARUN KUMAR | PORTFOLIO" property="og:title" />
<meta content="Social Impact Consulting Enthusiast | Love Developing Efficient Tech Solutions | Passionate about Developing cool website and application Currently Persuing BCA 2nd year and Software Development." property="og:description" />
<meta content="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214e685db4ce4719db68882_White%20Logo.png" property="og:image" />
<meta content="ARUN KUMAR | PORTFOLIO" property="twitter:title" />
<meta content="Social Impact Consulting Enthusiast | Love Developing Efficient Tech Solutions | Passionate about Developing cool website and application Currently Persuing BCA 2nd year and Software Development." property="twitter:description" />
<meta content="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214e685db4ce4719db68882_White%20Logo.png" property="twitter:image" />
<meta property="og:type" content="website" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<meta content="NrxtKpaTDRdSLCnNH42iJ2d6dGM2mM67Q7q5-W2zfb8" name="google-site-verification" />
<meta content="Webflow" name="generator" />
<link href="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/css/vedantathavale.webflow.e312e5670.css" rel="stylesheet" type="text/css" />
<style>
@media (min-width:992px) {
html.w-mod-js:not(.w-mod-ix) [data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4dd3"] {
opacity: 0;
}
html.w-mod-js:not(.w-mod-ix) [data-w-id="8498f77d-83ff-956f-0e9c-1dbb30afa7d8"] {
-webkit-transform: translate3d(0, 40px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
-moz-transform: translate3d(0, 40px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
-ms-transform: translate3d(0, 40px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
transform: translate3d(0, 40px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);
opacity: 0;
}
}
@media (max-width:991px) and (min-width:768px) {
html.w-mod-js:not(.w-mod-ix) [data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4dd3"] {
opacity: 0;
}
}
</style>
<link href="https://fonts.googleapis.com" rel="preconnect" />
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous" />
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">
WebFont.load({
google: {
families: ["Droid Serif:400,400italic,700,700italic", "Montserrat:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic", "Great Vibes:400", "Droid Sans:400,700", "Oswald:200,300,400,500,600,700", "Open Sans:300,300italic,400,400italic,600,600italic,700,700italic,800,800italic", "Lato:100,100italic,300,300italic,400,400italic,700,700italic,900,900italic"]
}
});
</script>
<script type="text/javascript">
! function(o, c) {
var n = c.documentElement,
t = " w-mod-";
n.className += t + "js", ("ontouchstart" in o || o.DocumentTouch && c instanceof DocumentTouch) && (n.className += t + "touch")
}(window, document);
</script>
<link href="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/62040e3ee41884fda7ca25c1_v%20A%20()%20(1).png" rel="shortcut icon" type="image/x-icon" />
<link href="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/62040eef914ede39280a76a0_v%20A%20(3).png" rel="apple-touch-icon" />
<script async="" src="https://www.googletagmanager.com/gtag/js?id=G-F8LD00119B"></script>
<script type="text/javascript">
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-F8LD00119B', {
'anonymize_ip': false
});
</script>
<!-- Facebook Pixel Code -->
<script>
! function(f, b, e, v, n, t, s) {
if (f.fbq) return;
n = f.fbq = function() {
n.callMethod ? n.callMethod.apply(n, arguments) : n.queue.push(arguments)
};
if (!f._fbq) f._fbq = n;
n.push = n;
n.loaded = !0;
n.version = '2.0';
n.queue = [];
t = b.createElement(e);
t.async = !0;
t.src = v;
s = b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t, s)
}(window, document, 'script', 'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '4826335367381214');
fbq('track', 'PageView');
</script>
<noscript>
<img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=4826335367381214&ev=PageView&noscript=1" />
</noscript>
<!-- End Facebook Pixel Code -->
<meta name="facebook-domain-verification" content="h0yqjoqg36qy6e7gcid2aluxw9wii4" />
</head>
<body class="body-2">
<div data-animation="default" data-collapse="medium" data-duration="400" data-easing="ease" data-easing2="ease" data-no-scroll="1" role="banner" class="navbar-3---light w-nav">
<div id="navbar" class="navbar-container--light navbar-large---light w-container">
<a href="#home" class="brand---light w-nav-brand">
<img class="image---light" src="https://vq.pe/creator/frontend/img/2319/1676269519-PicsArt_02-13-11.55.02.png" width="168" height="80" alt="Brand Image" sizes="168px" data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4dd3" loading="lazy" srcset="https://vq.pe/creator/frontend/img/2319/1676269519-PicsArt_02-13-11.55.02.png 500w, https://vq.pe/creator/frontend/img/2319/1676269519-PicsArt_02-13-11.55.02.png 800w, https://vq.pe/creator/frontend/img/2319/1676269519-PicsArt_02-13-11.55.02.png 1080w, https://vq.pe/creator/frontend/img/2319/1676269519-PicsArt_02-13-11.55.02.png 1502w" />
</a>
<nav role="navigation" class="nav-menu---light w-nav-menu">
<a href="#home" data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4dd5" style="opacity:0" class="nav-link-3---light w-nav-link">HOME</a>
<a href="#journey" data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4dd7" style="opacity:0" class="nav-link-3---light w-nav-link">MY JOURNEY</a>
<div data-hover="true" data-delay="0" class="dropdown-2---light w-dropdown">
<div data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4dda" style="opacity:0" class="dropdown-toggle-2---light w-dropdown-toggle">
<div class="icon-8---light w-icon-dropdown-toggle"></div>
<div class="text-block-21---light">MY WORK</div>
</div>
<nav class="dropdown-list-2---light w-dropdown-list">
<a href="#mywork" class="projectsdropdown---light w-dropdown-link">Projects</a>
<a href="#skillsdesktop" class="desktopskills---light w-dropdown-link">My Skillset</a>
<a href="#skillsmobile" class="mobileskills---light w-dropdown-link">My Skillset</a>
</nav>
</div>
<div data-hover="true" data-delay="0" class="w-dropdown">
<div data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4de6" style="opacity:0" class="dropdown-toggle-3---light w-dropdown-toggle">
<div class="icon-8 w-icon-dropdown-toggle"></div>
<div class="text-block-28">MERITS</div>
</div>
<nav class="dropdown-list-4 w-dropdown-list">
<a href="#certifications" class="dropdown-link-7 w-dropdown-link">Certifications</a>
<a href="#extracurriculars" class="dropdown-link-6 w-dropdown-link">Extracurriculars</a>
</nav>
</div>
<a href="#hireme" data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4def" style="opacity:0" class="nav-link-3---light w-nav-link">LET'S CONNECT!</a>
<a href="https://www.topperu.mozellosite.com/" target="_blank" class="nav-link-2---light w-nav-link">MY BLOG</a>
<div class="desktop-view-toggle---light">
<a href="https://Savagearun.github.io/arunn" class="link-block-20---light w-inline-block">
<div class="div-block-31--light">
<img src="https://github.githubassets.com/images/mona-loading-default.gif" loading="lazy" alt="Light to Dark Version Toggle Image" class="image-40---light" />
</div>
</a>
<link rel="prefetch" href="https://Savagearun.github.io/arunn" />
</div>
</nav>
<div class="menu-button---light w-nav-button">
<div data-w-id="daa0eb7d-bbfc-2232-237b-7a7210fc4df8" class="hamburger-menu-hm8---light w-nav-button">
<div class="top-bar-hm8"></div>
<div class="middle-bar-hm8"></div>
<div class="bottom-bar-hm8"></div>
<div class="cross-bar-1-hm8"></div>
<div class="cross-bar-2-hm8"></div>
</div>
</div>
<div class="mobile-view-toggle---light">
<a href="https://Savagearun.github.io/arunn" class="link-block-20---light w-inline-block">
<div class="div-block-31--light">
<img src="https://github.githubassets.com/images/mona-loading-default.gif" loading="lazy" alt="LIGHT TO DARK TOGGLE IMAGE" class="image-40---light" />
</div>
</a>
<link rel="prefetch" href="https://Savagearun.github.io/arunn" />
</div>
</div>
</div>
<main id="home" class="hero---light wf-section">
<div class="flex-container-2---light w-container">
<div class="div-block-8---light">
<h4 data-w-id="91838799-048a-fa54-59e2-01862d8e93d1" style="opacity:0" class="hero-intro-heading-l">
<span class="text-span-l">Namaste, <br />I'm </span>
<span class="text-span-23-l">ARUN KUMAR!</span>
<br />
</h4>
<div data-w-id="91838799-048a-fa54-59e2-01862d8e93db" style="opacity:0" class="div-block-9-l"></div>
<div data-w-id="91838799-048a-fa54-59e2-01862d8e93dc" style="opacity:0" class="div-block-28-l">
<h4 class="hero-intro-heading-2-l intro-skills-heading-l mobile-hero-intro-l">
<span class="text-span-18-l">BCA | Student</span>
<br />
</h4>
<div class="div-block-27-l"></div>
<h4 class="hero-intro-heading-2-l intro-skills-heading-l mobile-hero-intro-l">
<span class="text-span-18-l"> @AVVIARE, Noida | Affiliated By Glocal University</span>
<br />
</h4>
</div>
<div data-w-id="91838799-048a-fa54-59e2-01862d8e93e6" style="opacity:0" class="div-block-9-l"></div>
<p data-w-id="91838799-048a-fa54-59e2-01862d8e93e7" style="opacity:0" class="paragraph-5-l">
<span class="text-span-21-l light-text-box-front-screen">My current focus lies in exploring Product Management, Analytics, and Behavioral Marketing. I eagerly seek guidance and opportunities in these domains. </span>My passion lies in bridging the gap between technology and management to make a positive impact on society, and the environment. <br />
</p>
<div class="div-block-14-l">
<div data-w-id="91838799-048a-fa54-59e2-01862d8e93f0" style="opacity:0" class="w-layout-grid grid-3-l">
<a id="w-node-_91838799-048a-fa54-59e2-01862d8e93f1-03b140e1" href="https://www.linkedin.com/in/arun-prajapati-a5aa40262" target="_blank" class="link-block-16-l w-inline-block">
<img src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6204e4de0dbd1af485b074fd_Linkedin.svg" loading="lazy" width="32" alt="LINKEDIN LOGO" class="image-38" />
</a>
<a id="w-node-_91838799-048a-fa54-59e2-01862d8e93f3-03b140e1" href="https://github.com/SavageArun" target="_blank" class="link-block-17-l w-inline-block">
<img src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa1583ca7bb03b5cb3b1_github-logo-6532.svg" loading="lazy" width="51" alt="GITHUB LOGO" class="image-42 light" />
</a>
<a id="w-node-_91838799-048a-fa54-59e2-01862d8e93f5-03b140e1" href="https://www.instagram.com/savage_arun/" target="_blank" class="link-block-15-l w-inline-block">
<img src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/620410379fd96d2e81734f07_instagram-logo-8869.svg" loading="lazy" width="50" alt="INSTAGRAM LOGO" class="image-38" />
</a>
<a id="w-node-_91838799-048a-fa54-59e2-01862d8e93f7-03b140e1" href="https://www.facebook.com/Arun782783" target="_blank" class="link-block-17-l w-inline-block">
<img src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6204103780ae556fe87c71d4_facebook-2870.svg" loading="lazy" width="51" alt="FACEBOOK LOGO" class="fbheroicon" />
</a>
</div>
</div>
</div>
<div class="hero-image-mask---light-l">
<img src="https://vq.pe/creator/frontend/img/2319/1683632033-PicsArt_05-09-05.00.06.png" loading="lazy" srcset="https://vq.pe/creator/frontend/img/2319/1683632033-PicsArt_05-09-05.00.06.png 500w, https://vq.pe/creator/frontend/img/2319/1683632033-PicsArt_05-09-05.00.06.png 800w, https://vq.pe/creator/frontend/img/2319/1683632033-PicsArt_05-09-05.00.06.png 1080w, https://vq.pe/creator/frontend/img/2319/1683632033-PicsArt_05-09-05.00.06.png 1600w, https://vq.pe/creator/frontend/img/2319/1683632033-PicsArt_05-09-05.00.06.png 2000w, https://vq.pe/creator/frontend/img/2319/1683632033-PicsArt_05-09-05.00.06.png 2600w, https://vq.pe/creator/frontend/img/2319/1683632033-PicsArt_05-09-05.00.06.png 2907w" sizes="(max-width: 767px) 100vw, (max-width: 991px) 226.83334350585938px, (max-width: 1279px) 24vw, (max-width: 1439px) 25vw, (max-width: 1919px) 26vw, 50vw" alt="" class="hero-image-4-l new-class-for-desktop-image" />
</div>
</div>
</main>
<section id="journey" class="section-3-l wf-section">
<div class="l w-container">
<h1 data-w-id="93212131-a7e2-29e1-9fce-944c3ce53b26" style="opacity:0" class="heading-38">My Journey</h1>
<div class="div-block--l"></div>
<div data-w-id="93212131-a7e2-29e1-9fce-944c3ce53b29" style="opacity:0" class="text-block-2-l">
<span class="text-span-24">"My approach is to develop a web that focus on creating user-friendly and accessible websites,that provide a seamless experience for visitors. ".. <br />
<br />Namaste! I'm Arun, a passionate professional dedicated to making a positive impact through a collaborative approach. With experience in Web development, Code optimization and Analytics, Product Design, and business intelligence, I've contributed to projects fostering mutual development within my community and the professional world. Looking ahead, I'm passionate about leveraging my experiences, knowledge, and people-centric attitude to help organizations develop products and gain deeper business insights. <br /> <br />
</span> <span class="text-span-25">Click on Each Tab below to know more.</span>
</div>
</div>
</section>
<div data-current="Tab 3" data-easing="ease" data-duration-in="300" data-duration-out="100" class="tabs-2-l w-tabs">
<div class="tabs-menu-4-l w-tab-menu">
<a data-w-tab="Tab 1" class="tab-link-tab-1-3-l journeytabs-l w-inline-block w-tab-link">
<div class="text-block-5-l">Education</div>
</a>
<a data-w-tab="Tab 2" class="tab-link-tab-2-2-l w-inline-block w-tab-link">
<div class="text-block-3-l">Internships</div>
</a>
<a data-w-tab="Tab 3" class="tab-link-tab-3-2-l tab-link-tab-2-2-l w-inline-block w-tab-link w--current">
<div class="text-block-4-l">Work Experience</div>
</a>
<a data-w-tab="Tab 4" class="tab-link-tab-3-2-l w-inline-block w-tab-link">
<div class="text-block-4-l">Extracurriculars</div>
</a>
<a data-w-tab="Tab 5" class="tab-link-tab-3-2-l tab-link-tab-2-2-l w-inline-block w-tab-link">
<div class="text-block-4-l">Research Work</div>
</a>
</div>
<div class="tabs-content-l w-tab-content">
<div data-w-tab="Tab 1" class="tab-pane-tab-1--l w-tab-pane">
<div class="innerwrapper-2-l">
<div class="textwrap-2-l">
<div data-duration-in="300" data-duration-out="100" data-easing="ease-in" data-current="Tab 1" class="what-we-do-tabs-2-l w-tabs">
<div class="wwd-tabs-menu-2-l w-tab-menu">
<a data-w-tab="Tab 1" data-w-id="edddbf30-c030-0ab6-8973-3fcf41e0e46a" class="branding-nav-l click1-l w-inline-block w-tab-link w--current">
<div class="text-block-29">01</div>
</a>
</div>
<div class="wwd-tabs-content-2-l w-tab-content">
<div data-w-tab="Tab 1" class="branding-content-l w-tab-pane w--tab-active">
<div class="w-dyn-list">
<div role="list" class="collection-list-2 light w-dyn-items">
<div role="listitem" class="collection-item-2 w-dyn-item">
<div class="div-block-10">
<h4 class="heading-9 light heading-landscape">BCA - Bachelor's of computer applications</h4>
<h3 class="heading-11 light">@Avviare Educational Hub (Noida), UP, IN</h3>
<div class="div-block-2 career-div-dash career-upper-dash education-dash light"></div>
<h5 class="heading-10 light">CGPA: 7.94</h5>
<div class="text-block-7 light">Aug 2022- Jun 2025</div>
<div class="div-block-2 career-div-dash career-lower-dash education-dash light"></div>
<h5 data-w-id="ed42d984-b68d-a939-f5d4-10b267d9c9cf" class="heading-12 light">
<a href="#" class="link-32">
<span class="text-span-31">TAP TO KNOW MORE</span>
</a>
</h5>
<div class="rich-text-block-3 light w-richtext">
<blockquote>
<strong>IMPORTANT COURSES IN UNDERGRAD:</strong>
</blockquote>
<ul role="list">
<li>Data Structures & Algorithms</li>
<li>C++ and C Programming</li>
<li>Applied Machine Learning</li>
<li>Portfolio & Development</li>
<li>Git & Github</li>
<li>Application & Design</li>
<li>Web Applications</li>
<li>HTML CSS & JAVASCRIPT & Learning )</li>
</ul>
</div>
</div>
<a href="https://vjti.ac.in/" target="_blank" class="link-block-4 w-inline-block"></a>
<img width="32" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 2" class="tab-pane-tab-2--l w-tab-pane">
<div class="section-l dark-l wf-section">
<div class="wrapper-l internships">
<div class="innerwrapper-2-l">
<div class="textwrap-2-l">
<div data-duration-in="300" data-duration-out="100" data-easing="ease-in" data-current="Tab 1" class="what-we-do-tabs-2-l w-tabs">
<div class="wwd-tabs-menu-2-l w-tab-menu">
<a data-w-tab="Tab 1" data-w-id="bb04cd53-e647-831b-925a-c77626112106" class="branding-nav-l click1-l w-inline-block w-tab-link w--current">
<div class="text-block-29-l">01</div>
</a>
<a data-w-tab="Tab 2" data-w-id="bb04cd53-e647-831b-925a-c77626112109" class="branding-nav-l click1-l w-inline-block w-tab-link">
<div class="text-block--l">02</div>
</a>
<a data-w-tab="Tab 3" data-w-id="bb04cd53-e647-831b-925a-c7762611210c" class="branding-nav-l click1-l w-inline-block w-tab-link">
<div class="text-block-2--l">03</div>
</a>
</div>
<div class="wwd-tabs-content-2-l w-tab-content">
<div data-w-tab="Tab 1" class="branding-content-l w-tab-pane w--tab-active">
<div class="light w-dyn-list">
<div role="list" class="collection-list light w-dyn-items">
<div role="listitem" class="collection-item w-dyn-item">
<div class="div-block-3">
<h5 class="heading-4 career-designation light">Student | Fresher</h5>
<h6 class="heading-7 career-organisation light">@Fiverr Web Development</h6>
<div class="text-block-6 career-date light">Currently</div>
<div class="div-block-2 career-div-dash career-upper-dash"></div>
<h5 data-w-id="16c969da-e2f0-6794-648c-46eb2b1215af" class="heading-6 career-know-more">
<a href="#" class="link-35">TAP TO KNOW MORE</a>
</h5>
<div class="rich-text-block career-rich-text career-tasks light w-richtext">
<blockquote>
<strong> TASKS PERFORMED</strong>
</blockquote>
<ul role="list">
<li>I have developed an engaging Tic Tac Toe game using HTML, CSS, and JavaScript, providing a fun and interactive experience where players can test their strategic skills in a classic board game.</li>
<li>I have created an exquisite beauty parlour website, featuring stunning designs, elegant aesthetics, and a user-friendly interface, inviting visitors to explore a world of beauty and wellness services.</li>
<li>I have successfully designed and implemented a secure login and contact form for my college website, enhancing user accessibility and facilitating seamless communication within the college community.</li>
<li>My portfolio website combines the power of HTML, CSS, JavaScript, TypeScript, and other innovative technologies to create an immersive showcase of my skills and accomplishments in web development.</li>
</ul>
</div>
</div>
<a href="https://drive.google.com/file/d/1llB6yoanufw_CIh-nL7ruYbpJFh6EnB2/view?usp=sharing" class="link-block career-link-block w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
<div class="div-block-2 career-div-dash interactive-div-dash career-bottom-dash"></div>
<div class="rich-text-block-2 career-skills light w-richtext">
<blockquote>
<strong> Fiverr & Freelancer</strong>
</blockquote>
<ul role="list">
<li>HTML | CSS |JAVASCRIPT | ARTIFICIAL INTELLIGENCE</li>
<li>USER EXPERIENCE </li>
<li>DATA ANALYTICS | Google ANALYTICS</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 2" class="branding-content-l w-tab-pane">
<div class="w-dyn-list">
<div role="list" class="collection-list light w-dyn-items">
<div role="listitem" class="collection-item w-dyn-item">
<div class="div-block-3">
<h5 class="heading-4 career-designation light">E-commerce Website</h5>
<h6 class="heading-7 career-organisation">@Fashion Vista| Fashion Site | Application</h6>
<div class="text-block-6 career-date light">May 2 2023</div>
<div class="div-block-2 career-div-dash career-upper-dash"></div>
<h5 data-w-id="a3006386-1f7f-8b67-1e1b-d2ff163d4fc1" class="heading-6 career-know-more heading-24">
<a href="#" class="link-36">TAP TO KNOW MORE</a>
</h5>
<div class="rich-text-block career-rich-text career-tasks light w-richtext">
<blockquote>
<strong> TASKS PERFORMED</strong>
</blockquote>
<ul role="list">
<li>"Step into the world of fashion with our vibrant and stylish e-commerce website. Explore a wide range of trendy clothing, accessories, and footwear, carefully curated to suit every fashion-forward individual. With a seamless shopping experience and secure payment options, indulge in the latest fashion trends and elevate your personal style."'...</li>
<li>Converted the whole Scrap site into a working Page.</li>
<li>"Crafted with a blend of cutting-edge technologies including HTML, CSS, JavaScript, and backend frameworks, our e-commerce fashion website offers a seamless and immersive online shopping experience. Leveraging responsive design and optimized performance, we ensure a user-friendly interface across devices, making fashion accessible to customers anytime, anywhere." </li>
<!-- <li>Helped the corporation generate 1.3% more investor leads within a span of 1 month.</li>
<li>The Real Time Mutual Funds Data was fetched and worked upon using Azure.</li> -->
<li>"Despite a tight timeline of just two weeks, our dedicated team successfully developed an impressive e-commerce fashion website. Leveraging our expertise in HTML, CSS, JavaScript, and agile development methodologies, we delivered a fully functional platform that showcases the latest fashion trends, ensures smooth navigation, and enables seamless transactions, all within the short timeframe.".</li>
</ul>
</div>
</div>
<a href="https://drive.google.com/file/d/14rB3kd--ZOcu8-VLdk1LUspOlDvcKY23/view?usp=drivesdk" class="link-block career-link-block w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
<div class="div-block-2 career-div-dash interactive-div-dash career-bottom-dash"></div>
<div class="rich-text-block-2 career-skills light w-richtext">
<blockquote>
<strong> SKILLSET & TECHSTACK</strong>
</blockquote>
<ul role="list">
<li>HTML5 | CSS3 | JS</li>
<li>ORACLESQL | REACTJS</li>
<li> INTELLIGENCE | </li>
<li> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 3" class="branding-content-l w-tab-pane">
<div class="w-dyn-list">
<div role="list" class="collection-list light w-dyn-items">
<div role="listitem" class="collection-item w-dyn-item">
<div class="div-block-3">
<h5 class="heading-4 career-designation light">Web Developer </h5>
<h6 class="heading-7 career-organisation">@Github</h6>
<div class="text-block-6 career-date light">Sep 2022</div>
<div class="div-block-2 career-div-dash career-upper-dash"></div>
<h5 data-w-id="3edcf3f2-771a-ea29-1894-03be2f32a540" class="heading-6 career-know-more">
<a href="#" class="link-37">TAP TO KNOW MORE</a>
</h5>
<div class="rich-text-block career-rich-text career-tasks light w-richtext">
<blockquote>
<strong> TASKS PERFORMED</strong>
</blockquote>
<ul role="list">
<li>"Check out my portfolio of projects on GitHub, where I have meticulously documented and showcased my work. Leveraging the power of GitHub Pages, my projects are now easily accessible and can be explored directly from my GitHub profile, allowing you to delve into the code, view live demos, and gain insights into my technical skills and capabilities."</li>
<li>..</li>
<li>With an extensive collection of my work hosted on GitHub and showcased on GitHub Pages, you can explore my diverse range of projects and witness my growth as a developer.</li>
</ul>
</div>
</div>
<a href="https://drive.google.com/file/d/14rB3kd--ZOcu8-VLdk1LUspOlDvcKY23/view?usp=drivesdk" class="link-block career-link-block w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
<div class="div-block-2 career-div-dash interactive-div-dash career-bottom-dash"></div>
<div class="rich-text-block-2 career-skills light w-richtext">
<blockquote>
<strong> SKILLSET & TECHSTACK</strong>
</blockquote>
<ul role="list">
<li>HTML | CSS | JAVA SCRIPT</li>
<li>BOOTSTRAP 5 | MATERIAL JS</li>
<li>WEB DEVELOPMENT | SEO | SMM</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 3" class="tab-pane-tab-3--l w-tab-pane w--tab-active">
<div class="section-l dark-l wf-section">
<div class="wrapper-l internships">
<div class="innerwrapper-2-l">
<div class="textwrap-2-l">
<div data-duration-in="300" data-duration-out="100" data-easing="ease-in" data-current="Tab 1" class="what-we-do-tabs-2-l w-tabs">
<div class="wwd-tabs-menu-2-l w-tab-menu">
<a data-w-tab="Tab 1" data-w-id="a31b0e5e-416e-1bae-3773-ebf22ef89d82" class="branding-nav-l click1-l w-inline-block w-tab-link w--current">
<div class="text-block-29-l">01</div>
</a>
</div>
<div class="wwd-tabs-content-2-l w-tab-content">
<div data-w-tab="Tab 1" class="branding-content-l w-tab-pane w--tab-active">
<div class="light w-dyn-list">
<div role="list" class="collection-list-7 w-dyn-items">
<div role="listitem" class="w-dyn-item">
<div class="div-block-3">
<h4>Associate (Technology Consulting)</h4>
<h6 class="heading-7 career-organisation light">@Noida India - GB, IN</h6>
<div class="text-block-6 career-date light">Jul 2022 - May 2023</div>
<div class="div-block-2 career-div-dash career-upper-dash"></div>
<h5 data-w-id="9a3c869b-58b6-33a8-9335-4bb56b918c64" class="heading-6 career-know-more">
<a href="#" class="link-35">TAP TO KNOW MORE</a>
</h5>
<a href="https://www.github.com/SavageArun/" target="_blank" class="link-block career-link-block w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
<div data-w-id="ea0ecd48-3883-d8ee-fdae-7d1cdf07ed9d" style="display:none" class="w-richtext">
<blockquote>
<strong>TASKS AND ACHIEVEMENTS:</strong>
</blockquote>
<ul role="list">
<li>"Welcome to my world of web development, where creativity meets functionality. With a passion for crafting captivating websites, I combine my expertise in HTML, CSS, and JavaScript to deliver seamless user experiences. From responsive designs to optimized performance, I strive to create impactful digital solutions that leave a lasting impression. Join me on this journey as we turn visions into reality and shape the future of the web together."</li>
<!--<li>Jointly built data-driven Data Loader Templates with the Business Team using MS-Excel and SOSL/SOQL to optimize the efficiency of database operations.</li> -->
<li>"Having successfully completed over 20 projects, my portfolio showcases a diverse range of accomplishments. From elegant portfolio websites and feature-rich todo apps to dynamic weather apps, calculators, and captivating fashion Vista websites, each project reflects my strong command over web development technologies and my ability to create impactful digital experiences. Explore my portfolio to witness the fusion of creativity, functionality, and meticulous attention to detail in each project."</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 4" class="tab-pane-tab-4--l w-tab-pane">
<div class="wrapper-l extracurriculars">
<div class="innerwrapper-2-l">
<div class="textwrap-2-l">
<div data-duration-in="300" data-duration-out="100" data-easing="ease-in" data-current="Tab 1" class="what-we-do-tabs-2-l w-tabs">
<div class="wwd-tabs-menu-2-l w-tab-menu">
<a data-w-tab="Tab 1" data-w-id="edddbf30-c030-0ab6-8973-3fcf41e0e4b3" class="branding-nav-l click1-l w-inline-block w-tab-link w--current">
<div>01</div>
</a>
<a data-w-tab="Tab 2" data-w-id="edddbf30-c030-0ab6-8973-3fcf41e0e4b6" class="branding-nav-l click1-l w-inline-block w-tab-link">
<div>02</div>
</a>
<a data-w-tab="Tab 3" data-w-id="edddbf30-c030-0ab6-8973-3fcf41e0e4b9" class="branding-nav-l click1-l w-inline-block w-tab-link">
<div>03</div>
</a>
<a data-w-tab="Tab 4" data-w-id="edddbf30-c030-0ab6-8973-3fcf41e0e4bc" class="branding-nav-l click1-l w-inline-block w-tab-link">
<div>04</div>
</a>
</div>
<div class="wwd-tabs-content-2-l w-tab-content">
<div data-w-tab="Tab 1" class="branding-content-l w-tab-pane w--tab-active">
<div class="w-dyn-list">
<div role="list" class="collection-list-4 light w-dyn-items">
<div role="listitem" class="collection-item-4 w-dyn-item">
<div>
<h4 class="heading-17 light">College Student & ...</h4>
<h3 class="heading-18 light">@Avviar Educational Hub.</h3>
<div class="rich-text-block-5 light w-richtext">
<p>...</p>
<p>Aug 2022 - Jun 2023 (Social Media Marketing)</p>
<p></p>
</div>
<div class="div-block-2 career-div-dash career-upper-dash work-ex-upper-dash extracurricular-upper-dash"></div>
<h5 data-w-id="58bfb7e4-94af-2cad-9e89-a182a7489708" class="heading-19 extracurricular-tap-to-know-more light">
<a href="#" class="link-41">TAP TO KNOW MORE</a>
</h5>
<div class="rich-text-block-6 extracurricular-tasks light w-richtext">
<blockquote>
<strong>ACTIVITIES AND ACHIEVEMENTS:</strong>
</blockquote>
<ul role="list">
<li>I have Created a Functional College Contact form filling website'.</li>
<!--<li>As a part of Marketing team, I acted as a Marketing Executive for Technovanza 2019.</li>
<li>Managed the Robotics Events at Technovanza 2019.</li> -->
<li>featuring a collection of impressive projects. From a sleek and efficient calculator application to a versatile todo app that helps you stay organized, and a dynamic weather tracker application that keeps you updated with real-time weather information, each project demonstrates my ability to create user-friendly and functional web applications. Dive into my portfolio to witness the seamless integration of technology and usability in these projects.</li>
</ul>
</div>
</div>
<a href="https://drive.google.com/file/d/14rB3kd--ZOcu8-VLdk1LUspOlDvcKY23/view?usp=drivesdk" target="_blank" class="link-block-7 w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 2" class="branding-content-l w-tab-pane">
<div class="w-dyn-list">
<div role="list" class="collection-list-4 light w-dyn-items">
<div role="listitem" class="collection-item-4 w-dyn-item">
<div>
<h4 class="heading-17 light">Web Development Tutor</h4>
<h3 class="heading-18 light">@Also have experience of teaching </h3>
<div class="rich-text-block-5 w-dyn-bind-empty w-richtext"></div>
<div class="div-block-2 career-div-dash career-upper-dash work-ex-upper-dash extracurricular-upper-dash"></div>
<h5 data-w-id="7357a7af-6dcc-7b06-1862-bc288b42aa08" class="heading-19 light">
<a href="#" class="link-40">TAP TO KNOW MORE</a>
</h5>
<div class="rich-text-block-6 extracurricular-tasks light w-richtext">
<blockquote>
<strong>TASKS AND ACHIEVEMENTS:</strong>
</blockquote>
<ul role="list">
<li>Taught Web Development and Basics of Coding to students aged 14-18 coming from an underprivileged background.</li>
<li>Got featured in the Story of Makers magazine for various initiatives carried out during the tenure at Story of Makers.</li>
</ul>
</div>
</div>
<a href="https://drive.google.com/file/d/14rB3kd--ZOcu8-VLdk1LUspOlDvcKY23/view?usp=drivesdk" target="_blank" class="link-block-7 w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 3" class="branding-content-l w-tab-pane">
<div class="w-dyn-list">
<div role="list" class="collection-list-4 light w-dyn-items">
<div role="listitem" class="collection-item-4 w-dyn-item">
<div>
<h4 class="heading-17 light">Git & . Contribution</h4>
<h3 class="heading-18 light">@Git & GitHub</h3>
<div class="rich-text-block-5 light w-richtext">
<p>Jan 2022 </p>
<p>Jan 2023 - Till Date (Active Member &)</p>
<p></p>
</div>
<div class="div-block-2 career-div-dash career-upper-dash work-ex-upper-dash extracurricular-upper-dash"></div>
<h5 class="w-dyn-bind-empty"></h5>
<h5 data-w-id="ce770fb1-cb23-4a96-376d-905509bfd9f9" class="heading-19 extracurricular-tap-to-know-more light">
<a href="#" class="link-39">TAP TO KNOW MORE</a>
</h5>
<div class="rich-text-block-6 extracurricular-tasks light w-richtext">
<blockquote>
<strong>ACTIVITIES & ACHIEVEMENTS:</strong>
</blockquote>
<ul role="list">
<li>"Git and GitHub have been instrumental in my journey as a developer, enabling me to collaborate, track changes, and contribute to numerous projects. Through regular Git commits and GitHub contributions, I actively engage with the developer community, sharing my code, providing feedback, and contributing to open-source projects. Embracing the principles of version control and collaborative development, Git and GitHub have played a vital role in shaping my skills, fostering collaboration, and leaving a positive impact on the larger coding community.</li>
<!-- <li>As the first VP - Publd activities like "Talks with Personalities", "Weekly Quizzes", and much more.</li>
<li>Expanded th te5.</li>
<li>Currently serving as a mentor to Public Relations Team of VI TO Club.</li> -->
</ul>
</div>
</div>
<a href="https://www.toastmasters.org/Find-a-Club/07854983-vjti-toastmasters-club" target="_blank" class="link-block-7 w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 4" class="branding-content-l w-tab-pane">
<div class="w-dyn-list">
<div role="list" class="collection-list-4 light w-dyn-items">
<div role="listitem" class="collection-item-4 w-dyn-item">
<div>
<h4 class="heading-17 light">Android studio</h4>
<h3 class="heading-18 light">Application Development</h3>
<div class="rich-text-block-5 light w-richtext">
<p>Jan 2023</p>
<p></p>
</div>
<div class="div-block-2 career-div-dash career-upper-dash work-ex-upper-dash extracurricular-upper-dash"></div>
<h5 class="w-dyn-bind-empty"></h5>
<h5 data-w-id="a232e0f6-5936-5519-f4c6-e15f04b77f59" class="heading-19 extracurricular-tap-to-know-more light">
<a href="#" class="link-38">TAP TO KNOW MORE</a>
</h5>
<div class="rich-text-block-6 extracurricular-tasks light w-richtext">
<blockquote>ACTIVITIES:</blockquote>
<ul role="list">
<li>"Obtaining my Android application development certificate has been a significant milestone in my journey as a developer. With this certification, I have gained a comprehensive understanding of Android app development, including UI/UX design, Java programming, API integration, and deployment on the Google Play Store. Equipped with this certification, I am ready to create innovative and user-friendly Android applications that cater to the needs of today's mobile users.</li>
<!-- <li>Volunteered in Study Jams and Google Cloud Platform Activities.</li>
<li>Website Link: <a href="https://www.gdscvjti.tech/">Developer Student Clubs-VJTI (gdscvjti.tech)</a> -->
</li>
</ul>
<blockquote>TECH STACK:</blockquote>
<ul role="list">
<li>HTML | XML | JAVASCRIPT</li>
<li>BOOTSTRAP & MATERIAL JS LIBRARIES</li>
</ul>
</div>
</div>
<a href="http://gdscvjti.tech" target="_blank" class="link-block-7 w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div data-w-tab="Tab 5" class="w-tab-pane">
<div class="section-l dark-l wf-section">
<div class="wrapper-l research-work">
<div class="innerwrapper-2-l">
<div class="textwrap-2-l">
<div data-duration-in="300" data-duration-out="100" data-easing="ease-in" data-current="Tab 3" class="what-we-do-tabs-2-l w-tabs">
<div class="wwd-tabs-menu-2-l w-tab-menu">
<a data-w-tab="Tab 3" data-w-id="edddbf30-c030-0ab6-8973-3fcf41e0e4e3" class="branding-nav-l click1-l w-inline-block w-tab-link w--current">
<div>01</div>
</a>
</div>
<div class="wwd-tabs-content-2-l w-tab-content">
<div data-w-tab="Tab 3" class="branding-content-l w-tab-pane w--tab-active">
<div class="w-dyn-list">
<div role="list" class="collection-list-5 mobile-research-light w-dyn-items">
<div role="listitem" class="collection-item-5 w-dyn-item">
<div>
<h3 class="heading-20 light">Weather tracker</h3>
<h3 class="heading-21">@API</h3>
<h5 class="heading-22 light">JULY 2023 - Till Date</h5>
<div class="div-block-2 career-div-dash career-upper-dash work-ex-upper-dash extracurricular-upper-dash research-work-upper-dash"></div>
<h5 data-w-id="717d6570-71c0-9f23-2fe8-e9245d14e7a7" class="heading-23 research-work-know-more">
<a href="#" class="link-42">TAP TO KNOW MORE</a>
</h5>
</div>
<div style="display:none" class="research-work-tasks">
<div class="rich-text-block-7 light w-richtext">
<blockquote>
<strong>RESEARCH WORK OVERVIEW:</strong>
</blockquote>
<ul role="list">
<li>></li>
<li>"Experience real-time weather updates at your fingertips with my weather tracker web application. Seamlessly developed using HTML, CSS, and JavaScript, this application leverages APIs to fetch and display accurate weather information. From current weather conditions to extended forecasts, the intuitive user interface and interactive features make staying informed about the weather a breeze. Whether you're planning your day or exploring new destinations, my weather tracker application provides reliable weather data to keep you prepared and ahead of the forecast.</li>
<!-- <li>Computational Hardware like NVIDIA DGX was used in the process for the further implementation on low end spec devices.</li> -->
</ul>
</div>
<div class="div-block-2 career-div-dash career-upper-dash work-ex-upper-dash extracurricular-upper-dash research-work-lower-dash"></div>
<div class="rich-text-block-8 light w-richtext">
<blockquote>
<strong>TECH STACK USED:</strong>
</blockquote>
<ul role="list">
<li>Computer Vision | API PROGRAMMING</li>
<li>HTML | js</li>
<li>Statistics | Mathematics</li>
</ul>
</div>
</div>
<a href="https://SavageArun.github
io/weathertracker/" target="_blank" class="link-block-8 w-inline-block"></a>
<img width="50" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15556f45ea388eb5f8_share-3800.svg" alt="LINK IMAGE" class="image-7 mobile-career-link-image" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section id="mywork" class="property-section-l light">
<div class="container-2-l">
<div class="title-wrap-l">
<h2 data-w-id="ce4d7c2d-bc77-1960-c4d9-974910e1a16a" style="opacity:0" class="heading-25-l light">Projects</h2>
</div>
</div>
<div class="container-10-l light w-container">
<div class="div-block--l"></div>
<div class="text-block-2-l light"> <span data-w-id="ce4d7c2d-bc77-1960-c4d9-974910e1a170" style="opacity:0" class="text-span-5-l light">Click on Each Tab Below to Know More.</span>
</div>
</div>
</section>
<div data-current="Tab 1" data-easing="ease" data-duration-in="300" data-duration-out="100" class="tabs-5 w-tabs">
<div class="tabs-menu-7 w-tab-menu">
<a data-w-tab="Tab 1" class="tab-link-tab-1-6 w-inline-block w-tab-link w--current">
<div class="text-block-33">Personal & Portfolio</div>
</a>
<a data-w-tab="Tab 2" class="tab-link-tab-2-5 w-inline-block w-tab-link">
<div class="text-block-32">3D dynamic Website</div>
</a>
<a data-w-tab="Tab 3" class="tab-link-tab-3-5 w-inline-block w-tab-link">
<div class="text-block-34"> Work</div>
</a>
</div>
<div class="w-tab-content">
<div data-w-tab="Tab 1" class="tab-pane-tab-1-3 w-tab-pane w--tab-active">
<div class="container-4">
<div data-delay="4000" data-animation="slide" class="carousel is_contained light w-slider" data-autoplay="false" data-easing="ease" data-hide-arrows="false" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="4" data-duration="500" data-infinite="false" id="carousel">
<div class="carousel-mask light w-slider-mask">
<div class="carousel-slider-3 light w-slide">
<div class="card-3 light">
<div class="collection-list-wrapper light w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item">
<div class="div-block-11 light">
<img loading="lazy" src="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f202a7aed591166f5cb5_9.png" alt="" sizes="(max-width: 479px) 77vw, (max-width: 767px) 52vw, (max-width: 1919px) 35vw, 512px" srcset="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f202a7aed591166f5cb5_9-p-500.png 500w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f202a7aed591166f5cb5_9-p-800.png 800w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f202a7aed591166f5cb5_9-p-1080.png 1080w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f202a7aed591166f5cb5_9.png 1270w" class="image-14 light" />
<h4 class="heading-31 light">Portfolio</h4>
<div class="text-block-19 light">| JAN 2023 |</div>
<div class="w-layout-grid projecticongrid light">
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b2f8078e7f31355876_tensorflow-icon.svg" alt="Tensorflow Logo" class="image-20 v1" />
<img width="72" id="w-node-_37b41bc0-9a33-db6a-0a1e-d2965146e464-03b140e1" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa8b2cd465f4829c310244_image%20(2).svg" loading="lazy" alt="Flask Logo" class="image-19 v2" />
<img id="w-node-_37b41bc0-9a33-db6a-0a1e-d2965146e465-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa8bacfa7172b2879518e5_opencv-icon.svg" alt="OpenCV Logo" class="image-23 v3" />
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b2840f8483b43bb410_w3_html5-icon.svg" alt="HTML5 Logo" class="image-21 v4" />
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b36720d551dd6863a1_w3_css-icon.svg" alt="CSS3 Logo" class="image-24 v5" />
</div>
<div class="div-block-12 light"></div>
<div class="verauthlinks light">
<a href="https://www.tensorflow.org/" target="_blank" class="link-5 light">TENSORFLOW</a> | <a href="https://www.fullstackpython.com/flask.html" target="_blank" class="link-6 light">FLASK</a> | <a href="https://docs.opencv.org/3.4/index.html" target="_blank" class="link-2 light">OPENCV</a> | <a href="https://www.w3schools.com/html/" target="_blank" class="link-3 light">HTML5</a> | <a href="https://www.w3schools.com/css/default.asp" target="_blank" class="link-4 light">CSS3</a>
</div>
<div class="div-block-12 light"></div>
<a data-w-id="37b41bc0-9a33-db6a-0a1e-d2965146e479" href="#" class="button-5 light w-button">TAP TO KNOW MORE</a>
<div style="display:none" class="description">
<p class="p1 light">"Step into a visually immersive experience with my 3D portfolio website, where design and technology converge. Utilizing the power of HTML, CSS, and JavaScript, I have created a stunning 3D environment that showcases my projects in a unique and engaging manner. With dynamic animations, interactive elements, and seamless navigation, this portfolio website takes you on a virtual journey through my work, leaving a lasting impression and highlighting my creativity and technical expertise."</p>
<!--<p class="p2 light">The Application supports OTP Verification and makes used of VGG-19 to verify facial credentials of a person in a live video</p> -->
<p class="p3 light">Github Link: <a href="https://github.com/SavageArun" target="_blank" class="link-28">Click Here <br />
</a>Youtube Link: <a href="https://www.youtube.com/&t=6s" target="_blank" class="link-28"> Click Here</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-slider-3 _2 w-slide">
<div class="card-3 light">
<div class="collection-list-wrapper light w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item">
<div class="div-block-11 light">
<img loading="lazy" src="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1f71acbf78ec16cb8c8_8.png" alt="" sizes="(max-width: 479px) 77vw, (max-width: 767px) 52vw, (max-width: 1919px) 35vw, 512px" srcset="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1f71acbf78ec16cb8c8_8-p-500.png 500w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1f71acbf78ec16cb8c8_8-p-800.png 800w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1f71acbf78ec16cb8c8_8-p-1080.png 1080w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1f71acbf78ec16cb8c8_8.png 1270w" class="image-15 light" />
<h4 class="heading-31 light">Calculator Application</h4>
<div class="text-block-19 light">| AUG 2021 |</div>
<div class="w-layout-grid projecticongrid light">
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87b01c90f6eedf1eb8d9_numpy-icon.svg" alt="NumPy Logo" class="image-20 v1" />
<img width="72" id="w-node-_618d5f7a-f13a-f726-52e5-8681d70fc4ca-03b140e1" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87af17562ffc2aa8824b_pandas-original.svg" loading="lazy" alt="Pandas Python Logo" class="image-19 v2" />
<img id="w-node-_618d5f7a-f13a-f726-52e5-8681d70fc4cb-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fab00d00de1e2bf05cc2e3_matplotlib-icon.svg" alt="Matplotlib Logo" class="image-23 v3" />
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61faafdb3983d1e37e3f94e2_Wikiproject_COVID-19_-_logo.svg" alt="Covid-19 Virus Analytics Image" class="image-21 v4" />
</div>
<div class="div-block-12 light"></div>
<div class="pwclinks">
<a href="https://numpy.org/" target="_blank" class="link-7 light">NUMPY</a> | <a href="https://pandas.pydata.org/" target="_blank" class="link-8 light">PANDAS</a> | <a href="https://matplotlib.org/" target="_blank" class="link-9 light">MATPLOTLIB</a> | <a href="https://SavageArun.github.io/arun" target="_blank" class="link-10 light">Portfolio</a>
</div>
<div class="div-block-12 light"></div>
<a data-w-id="618d5f7a-f13a-f726-52e5-8681d70fc4db" href="#" class="button-5 light w-button">TAP TO KNOW MORE</a>
<div style="display:none" class="description">
<!-- <p class="p1 light">Under PwC's Case Study Challenge , our team proposed a solution for 'Cure & Pharma', a hypothetical company, to help them launch their covid-19 vaccine across countries that included India, Brazil, the USA, etc.</p> -->
<p class="p2 light">"My portfolio is a digital showcase of my skills, creativity, and accomplishments. With a clean and modern design, it offers a glimpse into my diverse range of projects, demonstrating my expertise in web development, design, and problem-solving. From stunning visuals to intuitive user experiences, my portfolio reflects my passion for creating impactful digital solutions and invites you to explore the possibilities of collaboration and innovation.</p>
<p class="p3 light">Github Link: <a href="https://github.com/SavageArun" target="_blank" class="link-28">Click Here <br />
</a>
<a href="https://SavageArun.github.io/vcard&" target="_blank" class="link-28"></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-slider-3 _3 w-slide">
<div class="card-3 light">
<div class="collection-list-wrapper light w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item">
<div class="div-block-11">
<img loading="lazy" src="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1ebff89df811b1b80f5_5.png" alt="" sizes="(max-width: 479px) 77vw, (max-width: 767px) 52vw, (max-width: 1919px) 35vw, 512px" srcset="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1ebff89df811b1b80f5_5-p-500.png 500w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1ebff89df811b1b80f5_5-p-800.png 800w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1ebff89df811b1b80f5_5-p-1080.png 1080w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1ebff89df811b1b80f5_5.png 1270w" class="image-16 light" />
<h4 class="heading-31 light">Weather.ly</h4>
<div class="text-block-19 light">| APR 2023 - ONGOING |</div>
<div class="w-layout-grid projecticongrid light">
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b2840f8483b43bb410_w3_html5-icon.svg" alt="HTML5 Logo" class="image-20 v1" />
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b36720d551dd6863a1_w3_css-icon.svg" alt="CSS3 Logo" class="image-20 v1" />
<img width="72" id="w-node-_89342b5f-fe42-3bc9-8550-79103bfa23cc-03b140e1" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87afc6b4ac9d2cf80591_javascript.svg" loading="lazy" alt="JavaScript Logo" class="image-19 v2" />
<img id="w-node-_89342b5f-fe42-3bc9-8550-79103bfa23cd-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87af2e1b53caf1cf84e7_jquery-icon.svg" alt="jQuery Logo" class="image-23 v3" />
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87b05c2c69968e62ff2e_Bootstrap.svg" alt="Bootstrap 5 Logo" class="image-21 v4" />
</div>
<div class="div-block-12 light"></div>
<div class="numistarlinks">
<a href="https://www.w3schools.com/html/" target="_blank" class="link-15 light">HTML5</a> | <a href="https://www.w3schools.com/Css/" target="_blank" class="link-14 light">CSS3</a> | <a href="https://www.w3schools.com/js/default.asp" target="_blank" class="link-13 light">JAVASCRIPT</a> | <a href="https://www.w3schools.com/jquery/default.asp" target="_blank" class="link-12 light">JQUERY</a> | <a href="https://www.w3schools.com/bootstrap/bootstrap_ver.asp" target="_blank" class="link-11 light">BOOTSTRAP5</a>
</div>
<div class="div-block-12 light"></div>
<a data-w-id="89342b5f-fe42-3bc9-8550-79103bfa23e0" href="#" class="button-5 light w-button">TAP TO KNOW MORE</a>
<div class="description light">
<p class="p1 light">"Discover the power of staying informed with my weather tracker app. Designed and developed by me, this intuitive and user-friendly application delivers real-time weather updates straight to your device. With accurate forecasts, interactive maps, and customizable settings, you can plan your activities, stay prepared for changing weather conditions, and make informed decisions. Experience the convenience and reliability of my weather tracker app, and never be caught off guard by the elements again."</p>
<!-- <p class="p2 light">The Platform focuses on developing and consolidating the Numismatic Community. Further API with Numista.com is planned.</p>-->
<p class="p3 light">Github Link: <a href="https://github.com/SavageArun" target="_blank" class="link-28">Click Here <br />
</a>
<a href="https://www.youtube.com/M&ts" target="_blank" class="link-28"></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-slider-3 _4 w-slide">
<div class="card-3">
<div class="collection-list-wrapper light w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item">
<div class="div-block-11">
<img loading="lazy" src="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1dfdb4ce4457eb6d97e_1.png" alt="" sizes="(max-width: 479px) 77vw, (max-width: 767px) 52vw, (max-width: 1919px) 35vw, 512px" srcset="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1dfdb4ce4457eb6d97e_1-p-500.png 500w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1dfdb4ce4457eb6d97e_1-p-800.png 800w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1dfdb4ce4457eb6d97e_1-p-1080.png 1080w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1dfdb4ce4457eb6d97e_1.png 1270w" class="image-17 light" />
<h4 class="heading-31 light">Social Media Marketing</h4>
<div class="text-block-19 light">| JUNE 2020 till Now|</div>
<div class="w-layout-grid projecticongrid light">
<img id="w-node-a355a1e5-c84c-f384-c05e-0f782e345c26-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87b0a2813f6ac61dadd3_selenium-logo.svg" alt="Selenium Web Browser Logo" class="image-23 v3" />
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa4fd00592417032f6259c_python-icon.svg" alt="Python3 Logo" class="image-21 v4" />
</div>
<div class="div-block-12 light"></div>
<div class="instagrowlinks">
<a href="https://www.instagram.com/savage_arun/" target="_blank" class="link-17 light">Support</a> | <a href="https://www.python.org/download/releases/3.0/" target="_blank" class="link-16 light">API</a>
</div>
<div class="div-block-12 light"></div>
<a data-w-id="a355a1e5-c84c-f384-c05e-0f782e345c30" href="#" class="button-5 light w-button">TAP TO KNOW MORE</a>
<div style="display:none" class="description">
<p class="p1 light">InstaGrow is an Bot Application that currently can be used by running it in the Command Prompt Shell of the device. It has been made for tracking the following and unfollowing activity for an Instagram Account.</p>
<p class="p2 light">My vision is to further deploy this application as an Android/iOS application for enhancing usability.</p>
<p class="p3 light">Github Link: <a href="https://github.com/SavageArun" target="_blank" class="link-28">Click Here <br />
</a>
<a href="https://www.youtube.com/M&t=6s" target="_blank" class="link-28"></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="arrow-left-2 w-slider-arrow-left">
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa15d53a7d1b3231ef03_arrow-left-3099.svg" alt="LEFT ARROW IMAGE" />
</div>
<div class="arrow-right-2 w-slider-arrow-right">
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/6214fa1593a6781f06e90fd9_arrow-left-3099%20(1).svg" alt="RIGHT ARROW LOGO" />
</div>
<div class="slide-nav w-slider-nav w-slider-nav-invert w-round"></div>
</div>
</div>
</div>
<div data-w-tab="Tab 2" class="tab-pane-tab-2-2 w-tab-pane">
<div class="container-4">
<div data-delay="4000" data-animation="slide" class="carousel is_contained w-slider" data-autoplay="false" data-easing="ease" data-hide-arrows="true" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="3" data-duration="500" data-infinite="false" id="carousel">
<div class="carousel-mask w-slider-mask">
<div class="carousel-slider-3 w-slide">
<div class="card-3">
<div class="collection-list-wrapper light w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item">
<div class="div-block-11 light">
<img loading="lazy" src="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1d49b584e8daef09e78_3.png" alt="" sizes="(max-width: 479px) 77vw, (max-width: 767px) 52vw, (max-width: 1919px) 35vw, 512px" srcset="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1d49b584e8daef09e78_3-p-500.png 500w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1d49b584e8daef09e78_3-p-800.png 800w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1d49b584e8daef09e78_3-p-1080.png 1080w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1d49b584e8daef09e78_3.png 1270w" class="image-14 light" />
<h4 class="heading-31 light">E-commerce </h4>
<div class="text-block-19 light">| AUG 2022 - till Now|</div>
<div class="w-layout-grid grid-2 deepfakegrid">
<img id="w-node-_0b05e906-9166-8d94-7556-56022f9ff7e7-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa4fd00592417032f6259c_python-icon.svg" alt="Python3 Logo" class="image-20 p1" />
<img width="72" id="w-node-_0b05e906-9166-8d94-7556-56022f9ff7e8-03b140e1" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b2f8078e7f31355876_tensorflow-icon.svg" loading="lazy" alt="Tensorflow Logo" class="image-19 p2" />
<img id="w-node-_0b05e906-9166-8d94-7556-56022f9ff7e9-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87af11951c318807d8b5_pytorch.svg" alt="PyTorch Logo" class="image-23 p3" />
</div>
<div class="div-block-12 light"></div>
<div class="deepfakelinks">
<a href="https://www.python.org/download/releases/3.0/" target="_blank" class="link-18 light">MongoDB</a> | <a href="https://www.tensorflow.org/" target="_blank" class="link-19 light">TENSORFLOW</a> | <a href="https://pytorch.org/" target="_blank" class="link-20 light">PYTORCH</a> | <a href="https://en.wikipedia.org/wiki/Deep_learning" target="_blank" class="link-21 light">DEEPLEARNING</a>
</div>
<div class="div-block-12 light"></div>
<a data-w-id="0b05e906-9166-8d94-7556-56022f9ff7f8" href="#" class="button-5 w-button">TAP TO KNOW MORE</a>
<div style="display:none" class="description">
<p class="p1 light">Under my Final Year Academic Research Project, my team and I proposed a new method of Deepfake Detection using Video Vision Transformer.</p>
<!-- <p class="p2 light">The project was made with an intention to deploy a Deepfake Detection Application such that it is computationally effective and for the social good.Computational Hardware like NVIDIA DGX was used in the process for the further implementation on low end spec devices.</p> -->
<p class="p3 light">Github Link: <a href="https://github.com/SavageArun" target="_blank" class="link-28">Click Here <br />
</a>
<a href="https://www.youtube.com/wM&t=6s" target="_blank" class="link-28"></a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="arrow-left-2 w-slider-arrow-left">
<div class="w-icon-slider-left"></div>
</div>
<div class="arrow-right-2 w-slider-arrow-right">
<div class="w-icon-slider-right"></div>
</div>
<div class="w-slider-nav w-slider-nav-invert w-round"></div>
</div>
</div>
</div>
<div data-w-tab="Tab 3" class="tab-pane-tab-3-2 w-tab-pane">
<div class="container-4">
<div data-delay="4000" data-animation="slide" class="carousel is_contained w-slider" data-autoplay="false" data-easing="ease" data-hide-arrows="true" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="3" data-duration="500" data-infinite="false" id="carousel">
<div class="carousel-mask w-slider-mask">
<div class="carousel-slider-3 w-slide">
<div class="card-3">
<div class="collection-list-wrapper light w-dyn-list">
<div role="list" class="w-dyn-items">
<div role="listitem" class="w-dyn-item">
<div class="div-block-11 light">
<img loading="lazy" src="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1c72074ff57a124540e_6.png" alt="" sizes="(max-width: 479px) 77vw, (max-width: 767px) 52vw, (max-width: 1919px) 35vw, 512px" srcset="https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1c72074ff57a124540e_6-p-500.png 500w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1c72074ff57a124540e_6-p-800.png 800w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1c72074ff57a124540e_6-p-1080.png 1080w, https://uploads-ssl.webflow.com/619fcdd9b259eef948368c68/6214f1c72074ff57a124540e_6.png 1270w" class="image-14 light" />
<h4 class="heading-31 light">Google DSC - Web Application</h4>
<div class="text-block-19 light">| OCT 2020 - DEC 2020 |</div>
<div class="w-layout-grid grid-2 numistargrid">
<img id="w-node-dea8954c-7c21-cdeb-7efc-840d19f767c6-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b2840f8483b43bb410_w3_html5-icon.svg" alt="HTML5 Logo" class="image-20 p1" />
<img width="72" id="w-node-dea8954c-7c21-cdeb-7efc-840d19f767c7-03b140e1" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b36720d551dd6863a1_w3_css-icon.svg" loading="lazy" alt="CSS3 Logo" class="image-19 p2" />
<img id="w-node-dea8954c-7c21-cdeb-7efc-840d19f767c8-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87afc6b4ac9d2cf80591_javascript.svg" alt="JavaScript Logo" class="image-23 p3" />
<img id="w-node-dea8954c-7c21-cdeb-7efc-840d19f767c9-03b140e1" loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87af2e1b53caf1cf84e7_jquery-icon.svg" alt="jQuery Logo" class="image-21 p4" />
<img loading="lazy" src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa87b05c2c69968e62ff2e_Bootstrap.svg" alt="Bootstrap 5 Logo" class="image-25" />
</div>
<div class="div-block-12 light"></div>
<div class="text-block-22">
<a href="https://www.w3schools.com/html/" target="_blank" class="link-22 light">HTML5</a> | <a href="https://www.w3schools.com/css/default.asp" target="_blank" class="link-23 light">CSS3</a> | <a href="https://www.w3schools.com/js/default.asp" target="_blank" class="link-24 light">JAVASCRIPT</a> | <a href="https://www.w3schools.com/jquery/default.asp" target="_blank" class="link-25 light">JQUERY</a> | <a href="https://www.w3schools.com/bootstrap/bootstrap_ver.asp" target="_blank" class="link-26 light">BOOTSTRAP5</a> | <a href="https://material-ui.com/store/" target="_blank" class="link-27 light">MATERIALUI</a>
</div>
<div class="div-block-12 light"></div>
<a data-w-id="dea8954c-7c21-cdeb-7efc-840d19f767df" href="#" class="button-5 light w-button">TAP TO KNOW MORE</a>
<div style="display:none" class="description">
<p class="p1 light">"As an experienced e-commerce website developer, I specialize in creating visually appealing and fully functional online stores. With expertise in HTML, CSS, JavaScript, and e-commerce platforms like Shopify and WooCommerce, I bring your business to the digital realm. From seamless product browsing to secure payment gateways, I design and develop e-commerce websites that drive sales, enhance user experiences, and elevate your brand's online presence. Trust me to transform your vision into a successful online store that captivates customers and boosts your business." </p>
<!-- <p class="p2 light">The xxx and other events held by Google and our club team.</p>-->
<p class="p3 light">Website Link: <a href="https://savagearun.github.io/store" target="_blank" class="link-28">Click Here</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="arrow-left-2 w-slider-arrow-left">
<div class="w-icon-slider-left"></div>
</div>
<div class="arrow-right-2 w-slider-arrow-right">
<div class="w-icon-slider-right"></div>
</div>
<div class="w-slider-nav w-slider-nav-invert w-round"></div>
</div>
</div>
</div>
</div>
</div>
<section id="skillsdesktop" class="section-10 wf-section">
<div class="container-5 w-container">
<h2 data-w-id="d4f746a7-fdbd-d98d-045c-f3b55178d725" style="opacity:0" class="desktopheadingskills-2">My Skills</h2>
<div class="div-block--l"></div>
<div class="w-layout-grid gridrow2">
<div class="w-layout-grid grid-11">
<h1 id="w-node-d4f746a7-fdbd-d98d-045c-f3b55178d72a-03b140e1" class="heading-39"> SOFTWARE DEVELOPMENT - WEB & APP</h1>
<div id="w-node-d4f746a7-fdbd-d98d-045c-f3b55178d72c-03b140e1" class="div-block-36">
<div class="w-layout-grid grid-12">
<div id="w-node-d4f746a7-fdbd-d98d-045c-f3b55178d72e-03b140e1" class="div-block-34">
<img src="https://uploads-ssl.webflow.com/6198dedd072a1191e8d6758c/61fa84b2840f8483b43bb410_w3_html5-icon.svg" loading="lazy" alt="HTML5 Logo" class="image-34" />