-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1070 lines (1010 loc) · 95.7 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-US" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<script>document.documentElement.classList.remove("no-js");</script>
<title>Resume – I'm Third Year Computer Engineering Student.</title>
<meta name="robots" content="max-image-preview:large">
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="dns-prefetch" href="//s.w.org">
<link href="https://fonts.gstatic.com/" crossorigin rel="preconnect">
<link rel="alternate" type="application/rss+xml" title="Resume » Feed" href="/https://jainshubham766.github.io/Resume/feed/">
<link rel="alternate" type="application/rss+xml" title="Resume » Comments Feed" href="/https://jainshubham766.github.io/Resume/comments/feed/">
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8.1"}};
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style>img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<link rel="stylesheet" id="wp-block-library-css" href="/https://jainshubham766.github.io/Resume/wp-includes/css/dist/block-library/style.min.css?ver=5.8.1" media="all">
<style id="wp-block-library-theme-inline-css">#start-resizable-editor-section{display:none}.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:hsla(0,0%,100%,.65)}.wp-block-code{font-family:Menlo,Consolas,monaco,monospace;color:#1e1e1e;padding:.8em 1em;border:1px solid #ddd;border-radius:4px}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:hsla(0,0%,100%,.65)}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:hsla(0,0%,100%,.65)}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:hsla(0,0%,100%,.65)}.wp-block-pullquote{border-top:4px solid;border-bottom:4px solid;margin-bottom:1.75em;color:currentColor}.wp-block-pullquote__citation,.wp-block-pullquote cite,.wp-block-pullquote footer{color:currentColor;text-transform:uppercase;font-size:.8125em;font-style:normal}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;position:relative;font-style:normal}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-group.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto;opacity:.4}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table thead{border-bottom:3px solid}.wp-block-table tfoot{border-top:3px solid}.wp-block-table td,.wp-block-table th{padding:.5em;border:1px solid;word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:hsla(0,0%,100%,.65)}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:hsla(0,0%,100%,.65)}.wp-block-template-part.has-background{padding:1.25em 2.375em;margin-top:0;margin-bottom:0}#end-resizable-editor-section{display:none}</style>
<link rel="stylesheet" id="contact-form-7-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.5.1" media="all">
<link rel="stylesheet" id="ultra-shortcodes-front-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/ultra-companion/assets/css/shortcodes.css?ver=5.8.1" media="all">
<link rel="stylesheet" id="wpopea-el-css-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/wpop-elementor-addons/assets/wpopea-element.css?ver=5.8.1" media="all">
<link rel="stylesheet" id="arrival-me-styles-css" href="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/style.css?ver=1.0.7" media="all">
<link rel="stylesheet" id="arrival-me-fonts-css" href="https://fonts.googleapis.com/css?family=Poppins%3A300%2C400%2C500%2C600%2C700&subset=latin%2Clatin-ext" media="all">
<link rel="stylesheet" id="arrival-fonts-css" href="https://fonts.googleapis.com/css?family=Roboto+Condensed%3A400%2C400i%2C700%2C700i%7CRoboto%3A400%2C500%2C700&subset=latin%2Clatin-ext" media="all">
<link rel="stylesheet" id="slick-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/ultra-companion/assets/slick/slick.css?ver=5.8.1" media="all">
<link rel="stylesheet" id="slick-theme-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/ultra-companion/assets/slick/slick-theme.css?ver=5.8.1" media="all">
<link rel="stylesheet" id="jquery-jarallax-css" href="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/lib/jarallax/jarallax.css?ver=1.0.7" media="all">
<link rel="stylesheet" id="ionicons-css" href="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/lib/ionicons/css/ionicons.min.css?ver=1.0.7" media="all">
<link rel="stylesheet" id="arrival-base-style-css" href="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival-me/style.css?ver=1.0.7" media="all">
<link rel="stylesheet" id="arrival-content-css" href="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/css/content.css?ver=1.0.7" media="all">
<link rel="stylesheet" id="arrival-responsive-css" href="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/css/responsive.css?ver=1.0.7" media="all">
<style id="arrival-responsive-inline-css">.top-header-wrapp,.scroll-top-top,.widget h2.widget-title:before,.comment-reply-link,.comment-form .form-submit input,span.tags-links a:hover,.header-last-item.search-wrap.header-btn a.header-cta-btn,.arrival-archive-navigation ul li a:hover,.arrival-archive-navigation ul li.active a,.comment-reply-link,.comment-form .form-submit input,.woocommerce div.product form.cart .button,.woocommerce .products li a.button:hover,.woocommerce #respond input#submit,.woocommerce nav.woocommerce-pagination ul li a:focus,.woocommerce nav.woocommerce-pagination ul li a:hover,.woocommerce nav.woocommerce-pagination ul li span.current,.woocommerce div.product form.cart .button,.woocommerce .cart .button,.woocommerce .cart input.button,.woocommerce button.button,button,input[type="button"],input[type="reset"],input[type="submit"],header.hover-layout-two .main-header-wrapp nav.main-navigation ul.arrival-main-navigation>li.menu-item>a:before,header.hover-layout-three .main-header-wrapp nav.main-navigation ul.arrival-main-navigation>li.menu-item:before,header span.cart-count,.site-main .entry-content a.button.wc-backward,.woocommerce div.product form.cart .button,.woocommerce .cart .button,.woocommerce .cart input.button,.woocommerce button.button,.content-area .product a.compare.button,.content-area .product .yith-wcwl-wishlistexistsbrowse.show a,.woocommerce .widget_shopping_cart .buttons a,.woocommerce.widget_shopping_cart .buttons a,.site-main .entry-content a.button.wc-backward,.arrival-cart-wrapper,.woocommerce #respond input#submit.alt,.woocommerce a.button.alt,.woocommerce button.button.alt,.woocommerce input.button.alt,.woocommerce-account .woocommerce-MyAccount-navigation ul li a{background:#fbd214} .main-navigation a:hover,.main-navigation a:focus,.arrival-top-navigation ul a:hover,.arrival-top-navigation ul a:focus,.main-navigation ul li a:hover,.header-last-item.search-wrap:hover,.widget ul li a:hover,.site-footer a:hover,.site-main a:hover,.entry-meta > span:hover,.main-navigation a:hover,footer .widget_pages a:hover::before,footer .widget_pages a:focus::before,footer .widget_nav_menu a:hover::before,footer .widget_nav_menu a:focus::before,nav.navigation.post-navigation .nav-links a:hover::after,.site-main .entry-content a,.main-navigation .current-menu-item a{color: #fbd214} .scroll-top-top,.comment-reply-link,.comment-form .form-submit input,span.tags-links a:hover,.arrival-archive-navigation ul li a:hover,.arrival-archive-navigation ul li.active a,.header-last-item.search-wrap.header-btn a.header-cta-btn,.comment-reply-link,.comment-form .form-submit input{border-color:#fbd214} p.woocommerce-mini-cart__buttons.buttons a:hover{background:rgba(251,210,20,0.8)} .top-header-wrapp{background:#fbd214} .top-header-wrapp a,.top-header-wrapp,header .cart-wrapper a{color:#fff} .top-header-wrapp .phone-wrap:before{background:#fff} .top-header-wrapp ul.social li a svg{fill:#fff} .top-header-wrapp .site-header-cart svg{stroke:#fff} .main-header-wrapp.boxed .container,.main-header-wrapp.full{background:#565656} .main-navigation ul li > a,.site-title a,.site-description,.header-last-item .search-wrap i,header .header-last-item .cart-wrapper a{color:#333} .main-navigation .dropdown-symbol,.arrival-top-navigation .dropdown-symbol{border-color:#333} .header-last-item.search-wrap .search-wrap svg{fill:#333!important} .main-navigation ul li a:hover,.main-navigation .current-menu-item a{color:#fbd214} .main-navigation ul li:hover .dropdown-symbol,.arrival-top-navigation ul li:hover.dropdown-symbol:hover{border-color:#fbd214} header.hover-layout-two .main-header-wrapp nav.main-navigation ul.arrival-main-navigation>li.menu-item>a:before{background:#fbd214} .home .arrival-transparent-header .main-navigation ul li > a,.home .arrival-transparent-header .site-title a,.home .arrival-transparent-header .site-description,.home .arrival-transparent-header .header-last-item .search-wrap i{color:#ffffff} .home .arrival-transparent-header .main-navigation .dropdown-symbol{border-color:#ffffff} .home .arrival-transparent-header .header-last-item.search-wrap .search-wrap svg{fill:#ffffff!important} .home header.arrival-transparent-header .header-last-item .cart-wrapper svg{stroke:#ffffff!important} .header-last-item{text-align:left} .container{max-width:1170px} .site{width:1170px} .after-top-header-wrapp{padding-top:0px;padding-bottom:0px} .after-top-header-wrapp{background:#3a3a3a;color:#333} .after-top-header-wrapp .icon-wrap i{color:#333} .arrival-breadcrumb-wrapper{background-image:url()} body.arrival-inner-page .site-header{padding-bottom:32px} .arrival-breadcrumb-wrapper{padding-top:32px;padding-bottom:32px} body.arrival-inner-page .site-header{background-position:initial} .main-navigation a,.header-last-item.search-wrap.header-btn a.header-cta-btn{font-weight:500} .site-footer{background:#0b0a0a} .site-footer h2.widget-title,.site-footer{color:#cacaca} .site-footer svg{fill:#cacaca} .site-footer ul li a,.site-footer a{color:#cacaca}</style>
<link rel="stylesheet" id="elementor-icons-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css?ver=5.12.0" media="all">
<link rel="stylesheet" id="elementor-frontend-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.4.4" media="all">
<style id="elementor-frontend-inline-css">@font-face{font-family:eicons;src:url(/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0);src:url(/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot?5.10.0#iefix) format("embedded-opentype"),url(/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2?5.10.0) format("woff2"),url(/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff?5.10.0) format("woff"),url(/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf?5.10.0) format("truetype"),url(/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg?5.10.0#eicon) format("svg");font-weight:400;font-style:normal}</style>
<link rel="stylesheet" id="elementor-post-260-css" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/elementor/css/post-260.css?ver=1634058379" media="all">
<link rel="stylesheet" id="font-awesome-5-all-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.4.4" media="all">
<link rel="stylesheet" id="font-awesome-4-shim-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.4.4" media="all">
<link rel="stylesheet" id="elementor-post-17-css" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/elementor/css/post-17.css?ver=1634061233" media="all">
<link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CPoppins%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=5.8.1" media="all">
<link rel="stylesheet" id="elementor-icons-shared-0-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css?ver=5.15.3" media="all">
<link rel="stylesheet" id="elementor-icons-fa-regular-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css?ver=5.15.3" media="all">
<link rel="stylesheet" id="elementor-icons-fa-solid-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css?ver=5.15.3" media="all">
<link rel="stylesheet" id="elementor-icons-fa-brands-css" href="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css?ver=5.15.3" media="all">
<script src="/https://jainshubham766.github.io/Resume/wp-includes/js/jquery/jquery.min.js?ver=3.6.0" id="jquery-core-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2" id="jquery-migrate-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/plugins/ultra-companion/shortcodes/shortcodes-front.js?ver=1.1.7" id="ultra-shortcodes-front-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/js/wooButtons.js?ver=1.0.7" id="arrival-wooButtons-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/plugins/ultra-companion/assets/slick/slick.js?ver=1.1.7" id="slick-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/lib/jquery-fitvids/jquery.fitvids.js?ver=1.0.7" id="jquery-fitvids-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/lib/onepagenav/jquery.nav.js?ver=1.0.7" id="jquery-nav-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/lib/jarallax/jarallax.min.js?ver=1.0.7" id="jarallax-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/js/skip-link-focus-fix.js?ver=1.0.7" id="arrival-skip-link-focus-fix-js" defer></script>
<script id="arrival-scripts-js-extra">
var arrival_loc_script = {"onepagenav":"yes","smoothscroll":"no"};
</script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/js/custom-scripts.js?ver=1.0.7" id="arrival-scripts-js"></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/pluggable/lazyload/js/lazyload.js?ver=20151215" id="arrival-lazy-load-images-js" defer></script>
<script src="/https://jainshubham766.github.io/Resume/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.4.4" id="font-awesome-4-shim-js"></script>
<link rel="https://api.w.org/" href="/https://jainshubham766.github.io/Resume/wp-json/">
<link rel="alternate" type="application/json" href="/https://jainshubham766.github.io/Resume/wp-json/wp/v2/pages/17">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/https://jainshubham766.github.io/Resume/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/https://jainshubham766.github.io/Resume/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 5.8.1">
<link rel="canonical" href="/https://jainshubham766.github.io/Resume/">
<link rel="shortlink" href="/https://jainshubham766.github.io/Resume/">
<link rel="alternate" type="application/json+oembed" href="/https://jainshubham766.github.io/Resume/wp-json/oembed/1.0/embed?url=%2F">
<link rel="alternate" type="text/xml+oembed" href="/https://jainshubham766.github.io/Resume/wp-json/oembed/1.0/embed?url=%2F&format=xml">
<link rel="preload" id="arrival-content-preload" href="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/css/content.css?ver=1.0.7" as="style">
<style>.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style> <style type="text/css">.site-title,
.site-description {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
}</style>
<link rel="icon" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2021/10/cropped-download-e1634056778577-32x32.png" sizes="32x32">
<link rel="icon" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2021/10/cropped-download-e1634056778577-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2021/10/cropped-download-e1634056778577-180x180.png">
<meta name="msapplication-TileImage" content="/wp-content/uploads/2021/10/cropped-download-e1634056778577-270x270.png">
</head>
<body class="home page-template page-template-tpl-home page-template-tpl-home-php page page-id-17 wp-custom-logo wp-embed-responsive default active-arrival elementor-default elementor-kit-260 elementor-page elementor-page-17">
<a class="skip-link screen-reader-text" href="#page">Skip to content</a>
<header id="masthead" class="site-header hdr-breadcrumb hover-layout-two arrival-transparent-header">
<div class="mob-outer-wrapp off">
<div class="container clearfix">
<div class="site-branding">
<a href="/https://jainshubham766.github.io/Resume/" class="custom-logo-link" rel="home" aria-current="page"><img width="127" height="100" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="custom-logo lazy" alt="Resume" data-src="/wp-content/uploads/2021/10/download-e1634056778577.png" data-sizes="(min-width: 960px) 75vw, 100vw"></a> <p class="site-title"><a href="/https://jainshubham766.github.io/Resume/" rel="home">Resume</a></p>
<p class="site-description">I'm Third Year Computer Engineering Student.</p>
</div>
<!-- .site-branding -->
<button class="toggle toggle-wrapp">
<span class="toggle-wrapp-inner">
<span class="toggle-box">
<span class="menu-toggle"></span>
</span>
</span>
</button>
</div>
<div class="mob-nav-wrapp">
<button class="toggle close-wrapp toggle-wrapp">
<span class="text">Close Menu</span>
<span class="icon-wrapp"><svg class="svg-icon" width="18" height="18" aria-hidden="true" role="img" focusable="false" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 47.971 47.971" style="enable-background:new 0 0 47.971 47.971;" xml:space="preserve"><g><path d="M28.228,23.986L47.092,5.122c1.172-1.171,1.172-3.071,0-4.242c-1.172-1.172-3.07-1.172-4.242,0L23.986,19.744L5.121,0.88 c-1.172-1.172-3.07-1.172-4.242,0c-1.172,1.171-1.172,3.071,0,4.242l18.865,18.864L0.879,42.85c-1.172,1.171-1.172,3.071,0,4.242 C1.465,47.677,2.233,47.97,3,47.97s1.535-0.293,2.121-0.879l18.865-18.864L42.85,47.091c0.586,0.586,1.354,0.879,2.121,0.879 s1.535-0.293,2.121-0.879c1.172-1.171,1.172-3.071,0-4.242L28.228,23.986z"></path></g></svg></span>
</button>
<nav class="avl-mobile-wrapp clear clearfix" arial-label="Mobile" role="navigation" tabindex="1">
<ul id="primary-menu" class="mob-primary-menu clear">
<li id="menu-item-259" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-259"><a href="#arrival-home">Home</a></li>
<li id="menu-item-250" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-250"><a href="#arrival-experience">Experience</a></li>
<li id="menu-item-248" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-248"><a href="#arrival-skills">Skills</a></li>
<li id="menu-item-249" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-249"><a href="#arrival-process">Process</a></li>
<li id="menu-item-20" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20"><a href="#arrival-portfolios">Portfolios</a></li>
<li id="menu-item-251" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-251"><a href="#arrival-contact">Contact</a></li>
</ul> <div class="header-last-item search-wrap">
<div class="search-wrap">
<svg class="svg-icon" width="24" height="24" aria-hidden="true" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewbox="0 0 50 50" style=" fill:#000000;"><g id="surface1"><path style=" " d="M 21 3 C 11.601563 3 4 10.601563 4 20 C 4 29.398438 11.601563 37 21 37 C 24.355469 37 27.460938 36.015625 30.09375 34.34375 L 42.375 46.625 L 46.625 42.375 L 34.5 30.28125 C 36.679688 27.421875 38 23.878906 38 20 C 38 10.601563 30.398438 3 21 3 Z M 21 7 C 28.199219 7 34 12.800781 34 20 C 34 27.199219 28.199219 33 21 33 C 13.800781 33 8 27.199219 8 20 C 8 12.800781 13.800781 7 21 7 Z "></path></g></svg> </div>
</div>
<ul class="social">
<li>
<a href="https://twitter.com/jainshubham766" target="_blank">
<svg class="svg-icon" width="24" height="24" aria-hidden="true" role="img" focusable="false" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"></path></svg> </a>
</li>
<li>
<a href="https://www.youtube.com/channel/UC0EC5Xzt2OTVm1og_Uf8gMA" target="_blank">
<svg class="svg-icon" width="24" height="24" aria-hidden="true" role="img" focusable="false" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg> </a>
</li>
<li>
<a href="#" target="_blank">
<svg class="svg-icon" width="24" height="24" aria-hidden="true" role="img" focusable="false" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg> </a>
</li>
<li>
<a href="#" target="_blank">
<svg class="svg-icon" width="24" height="24" aria-hidden="true" role="img" focusable="false" viewbox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M19.7,3H4.3C3.582,3,3,3.582,3,4.3v15.4C3,20.418,3.582,21,4.3,21h15.4c0.718,0,1.3-0.582,1.3-1.3V4.3 C21,3.582,20.418,3,19.7,3z M8.339,18.338H5.667v-8.59h2.672V18.338z M7.004,8.574c-0.857,0-1.549-0.694-1.549-1.548 c0-0.855,0.691-1.548,1.549-1.548c0.854,0,1.547,0.694,1.547,1.548C8.551,7.881,7.858,8.574,7.004,8.574z M18.339,18.338h-2.669 v-4.177c0-0.996-0.017-2.278-1.387-2.278c-1.389,0-1.601,1.086-1.601,2.206v4.249h-2.667v-8.59h2.559v1.174h0.037 c0.356-0.675,1.227-1.387,2.526-1.387c2.703,0,3.203,1.779,3.203,4.092V18.338z"></path></svg> </a>
</li>
</ul>
</nav>
<div class="menu-last"></div>
</div>
</div>
<div class="main-header-wrapp full off">
<div class="container op-grid-three">
<div class="site-branding">
<a href="/https://jainshubham766.github.io/Resume/" class="custom-logo-link" rel="home" aria-current="page"><img width="127" height="100" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="custom-logo lazy" alt="Resume" data-src="/wp-content/uploads/2021/10/download-e1634056778577.png" data-sizes="(min-width: 960px) 75vw, 100vw"></a> <p class="site-title"><a href="/https://jainshubham766.github.io/Resume/" rel="home">Resume</a></p>
<p class="site-description">I'm Third Year Computer Engineering Student.</p>
</div>
<!-- .site-branding -->
<nav id="site-navigation" class="main-navigation" aria-label="Main menu">
<div class="primary-menu-container">
<ul id="primary-menu" class="arrival-main-navigation">
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-259"><a href="#arrival-home">Home</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-250"><a href="#arrival-experience">Experience</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-248"><a href="#arrival-skills">Skills</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-249"><a href="#arrival-process">Process</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20"><a href="#arrival-portfolios">Portfolios</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-251"><a href="#arrival-contact">Contact</a></li>
</ul> </div>
</nav><!-- #site-navigation -->
<div class="header-last-item search-wrap">
<div class="search-wrap">
<svg class="svg-icon" width="24" height="24" aria-hidden="true" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewbox="0 0 50 50" style=" fill:#000000;"><g id="surface1"><path style=" " d="M 21 3 C 11.601563 3 4 10.601563 4 20 C 4 29.398438 11.601563 37 21 37 C 24.355469 37 27.460938 36.015625 30.09375 34.34375 L 42.375 46.625 L 46.625 42.375 L 34.5 30.28125 C 36.679688 27.421875 38 23.878906 38 20 C 38 10.601563 30.398438 3 21 3 Z M 21 7 C 28.199219 7 34 12.800781 34 20 C 34 27.199219 28.199219 33 21 33 C 13.800781 33 8 27.199219 8 20 C 8 12.800781 13.800781 7 21 7 Z "></path></g></svg> </div>
</div>
</div>
</div>
</header><!-- #masthead -->
<div id="page" class="front-page"> <div data-elementor-type="wp-page" data-elementor-id="17" class="elementor elementor-17" data-elementor-settings="[]">
<div class="elementor-section-wrap">
<section class="elementor-section elementor-top-section elementor-element elementor-element-9b6c628 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9b6c628" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f963a52" data-id="f963a52" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-9c4ce49 elementor-section-stretched elementor-section-height-min-height elementor-section-boxed elementor-section-height-default elementor-section-items-middle" data-id="9c4ce49" data-element_type="section" id="arrival-home" data-settings="{"background_background":"classic","stretch_section":"section-stretched"}">
<div class="elementor-background-overlay"></div>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6daa5b5 elementor-invisible" data-id="6daa5b5" data-element_type="column" data-settings="{"animation":"fadeInLeft"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-9453135 elementor-widget elementor-widget-heading" data-id="9453135" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">I’m Shubham Jain</h2> </div>
</div>
<div class="elementor-element elementor-element-ec69a82 elementor-invisible elementor-widget elementor-widget-heading" data-id="ec69a82" data-element_type="widget" data-settings="{"_animation":"slideInLeft","_animation_delay":2}" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h6 class="elementor-heading-title elementor-size-small">Computer Engineering Student </h6> </div>
</div>
<div class="elementor-element elementor-element-549a985 elementor-widget elementor-widget-text-editor" data-id="549a985" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><em>Currently In Third Year from college Sinhgad College of Engineering</em></p> </div>
</div>
<div class="elementor-element elementor-element-1280bb5 elementor-align-center elementor-button-success elementor-widget elementor-widget-button" data-id="1280bb5" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="https://drive.google.com/uc?export=download&id=12lsaBD_IsnqOTiY9c9ZPS0lpvfxcXGEO" class="elementor-button-link elementor-button elementor-size-lg" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-icon elementor-align-icon-left">
<i aria-hidden="true" class="far fa-file"></i> </span>
<span class="elementor-button-text">Download CV</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-a53ad62 elementor-hidden-phone elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a53ad62" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-37abb46" data-id="37abb46" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-87f3bc2 elementor-absolute elementor-widget__width-initial elementor-widget elementor-widget-image" data-id="87f3bc2" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="image.default">
<div class="elementor-widget-container">
<img width="640" height="363" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-large size-large lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/map.png" data-srcset="/wp-content/uploads/2019/10/map.png 973w, /wp-content/uploads/2019/10/map-300x170.png 300w, /wp-content/uploads/2019/10/map-768x436.png 768w" data-sizes="(min-width: 960px) 75vw, 100vw"> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-70321ffc elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="70321ffc" data-element_type="section" id="arrival-about" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-1d28c9f5 elementor-invisible" data-id="1d28c9f5" data-element_type="column" data-settings="{"animation":"slideInLeft","background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7d703837 elementor-widget elementor-widget-image" data-id="7d703837" data-element_type="widget" data-widget_type="image.default">
<div class="elementor-widget-container">
<img width="640" height="640" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-large size-large lazy" alt="logo" loading="lazy" data-src="/wp-content/uploads/2021/10/dp.jpg" data-srcset="/wp-content/uploads/2021/10/dp.jpg 640w, /wp-content/uploads/2021/10/dp-300x300.jpg 300w, /wp-content/uploads/2021/10/dp-150x150.jpg 150w" data-sizes="(min-width: 960px) 75vw, 100vw"> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-41063ef2 elementor-invisible" data-id="41063ef2" data-element_type="column" data-settings="{"animation":"slideInRight","background_background":"classic"}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-6167c245 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="6167c245" data-element_type="widget" data-widget_type="divider.default">
<div class="elementor-widget-container">
<div class="elementor-divider">
<span class="elementor-divider-separator">
</span>
</div>
</div>
</div>
<div class="elementor-element elementor-element-7a1e3059 elementor-widget elementor-widget-heading" data-id="7a1e3059" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">About Me</h2> </div>
</div>
<div class="elementor-element elementor-element-1e14bd6 elementor-widget elementor-widget-text-editor" data-id="1e14bd6" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Pursing Bachelor’s of Computer Engineering at Sinhgad College of Engineering (Affiliated with Savitribai Phule Pune University<span style="letter-spacing: -0.2px; text-align: center;">)</span></p> </div>
</div>
<div class="elementor-element elementor-element-9f90aaa elementor-widget elementor-widget-text-editor" data-id="9f90aaa" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>To become a successful professional by utilizing my skills and enable further professional and<br>personal development towards the prosperity of the organization.</p> </div>
</div>
<div class="elementor-element elementor-element-13b79fb6 elementor-widget elementor-widget-text-editor" data-id="13b79fb6" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p><span style="letter-spacing: -0.2px;">Hardworking nature along with good communication skill and ability to explore the</span><br style="letter-spacing: -0.2px;"><span style="letter-spacing: -0.2px;">requirements and come up with an innovative solution</span></p> </div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-7f2435d5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7f2435d5" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-315ed6ee" data-id="315ed6ee" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-414e6e80 elementor-widget elementor-widget-button" data-id="414e6e80" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="https://www.linkedin.com/in/jainshubham766/" class="elementor-button-link elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">Linkedin</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-2f81ebea" data-id="2f81ebea" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7bf7ec elementor-widget elementor-widget-button" data-id="7bf7ec" data-element_type="widget" data-widget_type="button.default">
<div class="elementor-widget-container">
<div class="elementor-button-wrapper">
<a href="https://drive.google.com/uc?export=download&id=12lsaBD_IsnqOTiY9c9ZPS0lpvfxcXGEO" class="elementor-button-link elementor-button elementor-size-sm" role="button">
<span class="elementor-button-content-wrapper">
<span class="elementor-button-text">VIEW RESUME</span>
</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-2088490" data-id="2088490" data-element_type="column">
<div class="elementor-widget-wrap">
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-7d2f8dd elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7d2f8dd" data-element_type="section" id="arrival-skills" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-b0260e4" data-id="b0260e4" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-af747ac me-heading elementor-widget elementor-widget-heading" data-id="af747ac" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">TECHNICAL Skills</h2> </div>
</div>
<div class="elementor-element elementor-element-61d2e78 elementor-widget elementor-widget-text-editor" data-id="61d2e78" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-00eb6d9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="00eb6d9" data-element_type="section">
<div class="elementor-container elementor-column-gap-wide">
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-852f65e" data-id="852f65e" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5daaa74 elementor-widget elementor-widget-progress" data-id="5daaa74" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">JAVA</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="94" aria-valuetext="">
<div class="elementor-progress-bar" data-max="94">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-86bf6dd elementor-widget elementor-widget-progress" data-id="86bf6dd" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">GIT BASH</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="65" aria-valuetext="">
<div class="elementor-progress-bar" data-max="65">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-3b39599 elementor-widget elementor-widget-progress" data-id="3b39599" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">LINUX</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="50" aria-valuetext="">
<div class="elementor-progress-bar" data-max="50">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-f43a6a0 elementor-widget elementor-widget-progress" data-id="f43a6a0" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">SDLC</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-16c5beb elementor-widget elementor-widget-progress" data-id="16c5beb" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">VISUAL STUDIO</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-560d4f0 elementor-widget elementor-widget-progress" data-id="560d4f0" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">CISCO PACKET TRACER</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-109bc27" data-id="109bc27" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-b44f962 elementor-widget elementor-widget-progress" data-id="b44f962" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">OOP</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="92" aria-valuetext="">
<div class="elementor-progress-bar" data-max="92">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-306b971 elementor-widget elementor-widget-progress" data-id="306b971" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">GITHUB</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="78" aria-valuetext="">
<div class="elementor-progress-bar" data-max="78">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-a0b5d6e elementor-widget elementor-widget-progress" data-id="a0b5d6e" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">OPERATING SYSTEM</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="65" aria-valuetext="">
<div class="elementor-progress-bar" data-max="65">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-2e0a969 elementor-widget elementor-widget-progress" data-id="2e0a969" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">AGILE MODEL</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-623b1d0 elementor-widget elementor-widget-progress" data-id="623b1d0" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">ECLIPSE IDE</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-34f7193 elementor-widget elementor-widget-progress" data-id="34f7193" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">SUBLIME TEXT EDITOR</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-9bc65d2" data-id="9bc65d2" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-9f2772a elementor-widget elementor-widget-progress" data-id="9f2772a" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">DATA STRUCTURES</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="80" aria-valuetext="">
<div class="elementor-progress-bar" data-max="80">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-7326e96 elementor-widget elementor-widget-progress" data-id="7326e96" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">WORDPRESS</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="82" aria-valuetext="">
<div class="elementor-progress-bar" data-max="82">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-4b33cfc elementor-widget elementor-widget-progress" data-id="4b33cfc" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">ORACLE SQL</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="66" aria-valuetext="">
<div class="elementor-progress-bar" data-max="66">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-38658c0 elementor-widget elementor-widget-progress" data-id="38658c0" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">NETBEANS</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-d514806 elementor-widget elementor-widget-progress" data-id="d514806" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">ORACLE SQL DEVELOPER</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-inner-column elementor-element elementor-element-7aaa45f" data-id="7aaa45f" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4487eea elementor-widget elementor-widget-progress" data-id="4487eea" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">HTML,CSS</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="89" aria-valuetext="">
<div class="elementor-progress-bar" data-max="89">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-c618ba8 elementor-widget elementor-widget-progress" data-id="c618ba8" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">C++</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="50" aria-valuetext="">
<div class="elementor-progress-bar" data-max="50">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-618d923 elementor-widget elementor-widget-progress" data-id="618d923" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">DBMS</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="65" aria-valuetext="">
<div class="elementor-progress-bar" data-max="65">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-47606c4 elementor-widget elementor-widget-progress" data-id="47606c4" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">INTELLIJ IDEA</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-8b419e7 elementor-widget elementor-widget-progress" data-id="8b419e7" data-element_type="widget" data-widget_type="progress.default">
<div class="elementor-widget-container">
<span class="elementor-title">ANACONDA</span>
<div class="elementor-progress-wrapper" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="81" aria-valuetext="">
<div class="elementor-progress-bar" data-max="81">
<span class="elementor-progress-text"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-b048a50 arrival-parallax elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b048a50" data-element_type="section" id="arrival-experience" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-5777f64 elementor-invisible" data-id="5777f64" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":1000}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4120a65 elementor-view-default elementor-widget elementor-widget-icon" data-id="4120a65" data-element_type="widget" data-widget_type="icon.default">
<div class="elementor-widget-container">
<div class="elementor-icon-wrapper">
<div class="elementor-icon">
<i aria-hidden="true" class="far fa-calendar-alt"></i> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-5f2207d elementor-widget elementor-widget-counter" data-id="5f2207d" data-element_type="widget" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="300" data-to-value="5" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix">🌟</span>
</div>
<div class="elementor-counter-title">AT HACKERRANK JAVA</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-e8404c9 elementor-invisible" data-id="e8404c9" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":1200}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-230b876 elementor-view-default elementor-widget elementor-widget-icon" data-id="230b876" data-element_type="widget" data-widget_type="icon.default">
<div class="elementor-widget-container">
<div class="elementor-icon-wrapper">
<div class="elementor-icon">
<i aria-hidden="true" class="fas fa-network-wired"></i> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-5510473 elementor-widget elementor-widget-counter" data-id="5510473" data-element_type="widget" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="200" data-to-value="300" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix">+</span>
</div>
<div class="elementor-counter-title">HOSTED TECHNICAL EVENT WITH MORE THAN 300 PARITCIPATES AT AISSMS</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-3d0a28a elementor-invisible" data-id="3d0a28a" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":1500}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f04adba elementor-view-default elementor-widget elementor-widget-icon" data-id="f04adba" data-element_type="widget" data-widget_type="icon.default">
<div class="elementor-widget-container">
<div class="elementor-icon-wrapper">
<div class="elementor-icon">
<i aria-hidden="true" class="far fa-smile"></i> </div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-dd4b102 elementor-widget elementor-widget-counter" data-id="dd4b102" data-element_type="widget" data-widget_type="counter.default">
<div class="elementor-widget-container">
<div class="elementor-counter">
<div class="elementor-counter-number-wrapper">
<span class="elementor-counter-number-prefix"></span>
<span class="elementor-counter-number" data-duration="300" data-to-value="48500" data-from-value="0" data-delimiter=",">0</span>
<span class="elementor-counter-number-suffix">+</span>
</div>
<div class="elementor-counter-title">VIEWS ON QUORA</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-8c18784 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="8c18784" data-element_type="section" id="arrival-process">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-f3db02e" data-id="f3db02e" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-1151671 me-heading elementor-widget elementor-widget-heading" data-id="1151671" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Projects , Experience & Achievements</h2> </div>
</div>
<div class="elementor-element elementor-element-c017d62 elementor-widget elementor-widget-text-editor" data-id="c017d62" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
</div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-d3570c7 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="d3570c7" data-element_type="section" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-extended">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-01df8df elementor-invisible" data-id="01df8df" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":1000}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a0c34a2 elementor-widget elementor-widget-heading" data-id="a0c34a2" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h5 class="elementor-heading-title elementor-size-medium">Achievements</h5> </div>
</div>
<div class="elementor-element elementor-element-afa8bf9 elementor-view-default elementor-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="afa8bf9" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-shrink">
<i aria-hidden="true" class="fas fa-desktop"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
<span style="font-size: 21.06px;"> GeeksForGeeks</span> </span>
</h3>
<p class="elementor-icon-box-description">
In Top 100 in GeeksForGeeks Student Chapter Code Battle. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-b8ae514 elementor-invisible" data-id="b8ae514" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":1200}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a6246be elementor-widget elementor-widget-heading" data-id="a6246be" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Projects</h2> </div>
</div>
<div class="elementor-element elementor-element-aa61bf6 elementor-view-default elementor-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="aa61bf6" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-">
<i aria-hidden="true" class="far fa-chart-bar"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Graphics Design </span>
</h3>
<p class="elementor-icon-box-description">
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis quis nostrud exercitation Ut enim ad minim. </p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-451331c elementor-invisible" data-id="451331c" data-element_type="column" data-settings="{"animation":"fadeInUp","animation_delay":1500}">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-91847f7 elementor-widget elementor-widget-heading" data-id="91847f7" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Experience</h2> </div>
</div>
<div class="elementor-element elementor-element-f049784 elementor-view-default elementor-position-top elementor-vertical-align-top elementor-widget elementor-widget-icon-box" data-id="f049784" data-element_type="widget" data-widget_type="icon-box.default">
<div class="elementor-widget-container">
<div class="elementor-icon-box-wrapper">
<div class="elementor-icon-box-icon">
<span class="elementor-icon elementor-animation-">
<i aria-hidden="true" class="fab fa-wordpress-simple"></i> </span>
</div>
<div class="elementor-icon-box-content">
<h3 class="elementor-icon-box-title">
<span>
Contact List </span>
</h3>
<p class="elementor-icon-box-description">
Esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt. </p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-b33ea6c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="b33ea6c" data-element_type="section" id="arrival-portfolios" data-settings="{"background_background":"classic"}">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-e9f372e" data-id="e9f372e" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-f1e8683 me-heading elementor-widget elementor-widget-heading" data-id="f1e8683" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Recent Projects</h2> </div>
</div>
<div class="elementor-element elementor-element-b7fce68 elementor-widget elementor-widget-text-editor" data-id="b7fce68" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, <br>ut fermentum massa justo sit amet risus. Nullam id dolor </div>
</div>
<div class="elementor-element elementor-element-a26d8b3 gallery-spacing-custom elementor-invisible elementor-widget elementor-widget-image-gallery" data-id="a26d8b3" data-element_type="widget" data-settings="{"_animation":"fadeInUp","_animation_delay":1200}" data-widget_type="image-gallery.default">
<div class="elementor-widget-container">
<div class="elementor-image-gallery">
<div id="gallery-1" class="gallery galleryid-17 gallery-columns-3 gallery-size-full">
<figure class="gallery-item">
<div class="gallery-icon landscape">
<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="a26d8b3" data-elementor-lightbox-title="ml7" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml7.jpg"><img width="900" height="900" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-full size-full lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml7.jpg" data-srcset="/wp-content/uploads/2019/10/ml7.jpg 900w, /wp-content/uploads/2019/10/ml7-300x300.jpg 300w, /wp-content/uploads/2019/10/ml7-150x150.jpg 150w, /wp-content/uploads/2019/10/ml7-768x768.jpg 768w, /wp-content/uploads/2019/10/ml7-800x800.jpg 800w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon landscape">
<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="a26d8b3" data-elementor-lightbox-title="ml9" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml9.jpg"><img width="900" height="900" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-full size-full lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml9.jpg" data-srcset="/wp-content/uploads/2019/10/ml9.jpg 900w, /wp-content/uploads/2019/10/ml9-300x300.jpg 300w, /wp-content/uploads/2019/10/ml9-150x150.jpg 150w, /wp-content/uploads/2019/10/ml9-768x768.jpg 768w, /wp-content/uploads/2019/10/ml9-800x800.jpg 800w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon landscape">
<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="a26d8b3" data-elementor-lightbox-title="ml10" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml10.jpg"><img width="900" height="900" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-full size-full lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml10.jpg" data-srcset="/wp-content/uploads/2019/10/ml10.jpg 900w, /wp-content/uploads/2019/10/ml10-300x300.jpg 300w, /wp-content/uploads/2019/10/ml10-150x150.jpg 150w, /wp-content/uploads/2019/10/ml10-768x768.jpg 768w, /wp-content/uploads/2019/10/ml10-800x800.jpg 800w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon landscape">
<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="a26d8b3" data-elementor-lightbox-title="ml13" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml13.jpg"><img width="732" height="732" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-full size-full lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml13.jpg" data-srcset="/wp-content/uploads/2019/10/ml13.jpg 732w, /wp-content/uploads/2019/10/ml13-300x300.jpg 300w, /wp-content/uploads/2019/10/ml13-150x150.jpg 150w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon portrait">
<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="a26d8b3" data-elementor-lightbox-title="ml4" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml4.jpg"><img width="668" height="698" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-full size-full lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml4.jpg" data-srcset="/wp-content/uploads/2019/10/ml4.jpg 668w, /wp-content/uploads/2019/10/ml4-287x300.jpg 287w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon landscape">
<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="a26d8b3" data-elementor-lightbox-title="ml8" href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml8.jpg"><img width="610" height="610" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-full size-full lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml8.jpg" data-srcset="/wp-content/uploads/2019/10/ml8.jpg 610w, /wp-content/uploads/2019/10/ml8-300x300.jpg 300w, /wp-content/uploads/2019/10/ml8-150x150.jpg 150w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-fb7702c elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="fb7702c" data-element_type="section" id="arrival-contact">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-8b62f1a" data-id="8b62f1a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-d289ce3 me-heading elementor-widget elementor-widget-heading" data-id="d289ce3" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Get In Touch</h2> </div>
</div>
<div class="elementor-element elementor-element-6e056ba elementor-widget elementor-widget-text-editor" data-id="6e056ba" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, <br>ut fermentum massa justo sit amet risus. Nullam id dolor </div>
</div>
<section class="elementor-section elementor-inner-section elementor-element elementor-element-16508b0 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="16508b0" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-54f87cb" data-id="54f87cb" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-56ba3a7 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="56ba3a7" data-element_type="widget" data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="fas fa-phone-alt"></i> </span>
<span class="elementor-icon-list-text">Call Us:</span>
</li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-80b83be elementor-widget elementor-widget-heading" data-id="80b83be" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<span class="elementor-heading-title elementor-size-default">+91- 9140192060</span> </div>
</div>
<div class="elementor-element elementor-element-1ab8b6c elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list" data-id="1ab8b6c" data-element_type="widget" data-widget_type="icon-list.default">
<div class="elementor-widget-container">
<ul class="elementor-icon-list-items">
<li class="elementor-icon-list-item">
<span class="elementor-icon-list-icon">
<i aria-hidden="true" class="far fa-envelope"></i> </span>
<span class="elementor-icon-list-text">Mail Us:</span>
</li>
</ul>
</div>
</div>
<div class="elementor-element elementor-element-e4f572b elementor-widget elementor-widget-heading" data-id="e4f572b" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<span class="elementor-heading-title elementor-size-default">[email protected]
</span> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-d72edb2" data-id="d72edb2" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-4bb21e6 elementor-widget elementor-widget-heading" data-id="4bb21e6" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h2 class="elementor-heading-title elementor-size-default">Have Something To Write?</h2> </div>
</div>
<div class="elementor-element elementor-element-1db0047 elementor-widget elementor-widget-text-editor" data-id="1db0047" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Please provide your suggestions to improve my technical profile as per your company requirements.</p>
<p>Feedback link below</p> </div>
</div>
<div class="elementor-element elementor-element-8cbd671 elementor-widget elementor-widget-shortcode" data-id="8cbd671" data-element_type="widget" data-widget_type="shortcode.default">
<div class="elementor-widget-container">
<div class="elementor-shortcode">[CLICK HERE]</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-72d0dd6 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="72d0dd6" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-2b404c5" data-id="2b404c5" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-cb2dc9c elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons" data-id="cb2dc9c" data-element_type="widget" data-widget_type="social-icons.default">
<div class="elementor-widget-container">
<div class="elementor-social-icons-wrapper elementor-grid">
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin elementor-repeater-item-9a4e568" href="https://www.linkedin.com/in/jainshubham766/" target="_blank">
<span class="elementor-screen-only">Linkedin</span>
<i class="fab fa-linkedin"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-github elementor-repeater-item-5549f6d" href="https://github.com/jainshubham766" target="_blank">
<span class="elementor-screen-only">Github</span>
<i class="fab fa-github"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-a55249e" href="https://twitter.com/jainshubham766" target="_blank">
<span class="elementor-screen-only">Twitter</span>
<i class="fab fa-twitter"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-99408b4" href="https://www.youtube.com/channel/UC0EC5Xzt2OTVm1og_Uf8gMA" target="_blank">
<span class="elementor-screen-only">Youtube</span>
<i class="fab fa-youtube"></i> </a>
</span>
<span class="elementor-grid-item">
<a class="elementor-icon elementor-social-icon elementor-social-icon-spotify elementor-repeater-item-e40ac89" href="https://open.spotify.com/playlist/730PPkfOFJnzgBb89oJjN0" target="_blank">
<span class="elementor-screen-only">Spotify</span>
<i class="fab fa-spotify"></i> </a>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
<!-- #page -->
<footer id="colophon" class="site-footer">
<div class="container">
<div class="footer-widget-wrapper clearfix col-3">
<div class=" ftr-widget footer-1">
<section id="text-2" class="widget widget_text"><h2 class="widget-title">GET IN TOUCH</h2> <div class="textwidget">
<p>Always eager to learn new skills and new connections.</p>
<p><strong>Email Address</strong><br>
<a href="/https://jainshubham766.github.io/Resume/[email protected]">[email protected]</a></p>
<p><strong>Phone Number</strong><br>
+91- 9140192060</p>
<p><strong>Location</strong><br>
Pune, Maharashtra-411040</p>
</div>
</section> </div>
<div class=" ftr-widget footer-2">
<section id="text-3" class="widget widget_text"><h2 class="widget-title">ABOUT ME</h2> <div class="textwidget">
<div class="elementor-element elementor-element-1e14bd6 elementor-widget elementor-widget-text-editor" data-id="1e14bd6" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Pursing Bachelor’s of Computer Engineering at Sinhgad College of Engineering (Affiliated with Savitribai Phule Pune University)</p>
</div>
</div>
<div class="elementor-element elementor-element-9f90aaa elementor-widget elementor-widget-text-editor" data-id="9f90aaa" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>To become a successful professional by utilizing my skills and enable further professional and<br>
personal development towards the prosperity of the organization.</p>
</div>
</div>
<div class="elementor-element elementor-element-13b79fb6 elementor-widget elementor-widget-text-editor" data-id="13b79fb6" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>Hardworking nature along with good communication skill and ability to explore the<br>
requirements and come up with an innovative solution</p>
</div>
</div>
</div>
</section> </div>
<div class=" ftr-widget footer-3">
<section id="media_gallery-1" class="widget widget_media_gallery"><h2 class="widget-title">MY PROJECTS</h2>
<div id="gallery-2" class="gallery galleryid-17 gallery-columns-3 gallery-size-thumbnail">
<figure class="gallery-item">
<div class="gallery-icon landscape">
<a href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml8.jpg"><img width="150" height="150" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-thumbnail size-thumbnail lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml8-150x150.jpg" data-srcset="/wp-content/uploads/2019/10/ml8-150x150.jpg 150w, /wp-content/uploads/2019/10/ml8-300x300.jpg 300w, /wp-content/uploads/2019/10/ml8.jpg 610w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon landscape">
<a href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml14.jpg"><img width="150" height="150" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-thumbnail size-thumbnail lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml14-150x150.jpg" data-srcset="/wp-content/uploads/2019/10/ml14-150x150.jpg 150w, /wp-content/uploads/2019/10/ml14-300x300.jpg 300w, /wp-content/uploads/2019/10/ml14.jpg 610w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon portrait">
<a href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml4.jpg"><img width="150" height="150" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-thumbnail size-thumbnail lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml4-150x150.jpg" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon landscape">
<a href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml13.jpg"><img width="150" height="150" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-thumbnail size-thumbnail lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml13-150x150.jpg" data-srcset="/wp-content/uploads/2019/10/ml13-150x150.jpg 150w, /wp-content/uploads/2019/10/ml13-300x300.jpg 300w, /wp-content/uploads/2019/10/ml13.jpg 732w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>
</div></figure><figure class="gallery-item">
<div class="gallery-icon landscape">
<a href="/https://jainshubham766.github.io/Resume/wp-content/uploads/2019/10/ml10.jpg"><img width="150" height="150" src="/https://jainshubham766.github.io/Resume/wp-content/themes/arrival/assets/images/placeholder.svg" class="attachment-thumbnail size-thumbnail lazy" alt="" loading="lazy" data-src="/wp-content/uploads/2019/10/ml10-150x150.jpg" data-srcset="/wp-content/uploads/2019/10/ml10-150x150.jpg 150w, /wp-content/uploads/2019/10/ml10-300x300.jpg 300w, /wp-content/uploads/2019/10/ml10-768x768.jpg 768w, /wp-content/uploads/2019/10/ml10-800x800.jpg 800w, /wp-content/uploads/2019/10/ml10.jpg 900w" data-sizes="(min-width: 960px) 75vw, 100vw"></a>