-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1322 lines (1267 loc) · 77.9 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 class="no-js" lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mehul Makwana - Web Developer and Programmer</title>
<meta name="description" content="Mehul Makwana is a Web Developer and Programmer with expertise in Python, PHP, JavaScript, and more. Explore my skills, education, and contact information.">
<meta name="keywords" content="Mehul Makwana, Web Developer, Programmer, Python, PHP, JavaScript, HTML, CSS, WordPress, MySQL, MongoDB, AWS, Linux, Raspberry Pi, IOT">
<meta name="author" content="Mehul Makwana">
<meta name="robots" content="index, follow">
<meta property="og:title" content="Mehul Makwana - Web Developer and Programmer">
<meta property="og:description" content="Explore the portfolio and resume of Mehul Makwana, a skilled Web Developer and Programmer.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://mehulmakwana.vercel.app/">
<meta property="og:image" content="https://yourwebsite.com/images/your-image.jpg">
<link rel="canonical" href="https://mehulmakwana.vercel.app/">
<!-- Place favicon.ico in the root directory -->
<link rel="apple-touch-icon" href="./assets/img/favicon.png" />
<link rel="shortcut icon" type="image/png" href="./assets/img/favicon.png" />
<!-- CSS here -->
<link rel="stylesheet" href="assets/css/animate.min.css">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/font-awesome-pro.min.css">
<link rel="stylesheet" href="assets/css/flaticon_gerold.css">
<link rel="stylesheet" href="assets/css/nice-select.css">
<link rel="stylesheet" href="assets/css/backToTop.css">
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/odometer-theme-default.css">
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/light-mode.css">
<link rel="stylesheet" href="assets/css/responsive.css">
</head>
<body class="light-mode">
<!-- Preloader Area Start -->
<div class="preloader">
<svg viewBox="0 0 1000 1000" preserveAspectRatio="none">
<path id="preloaderSvg" d="M0,1005S175,995,500,995s500,5,500,5V0H0Z"></path>
</svg>
<div class="preloader-heading">
<div class="load-text">
<span>L</span>
<span>o</span>
<span>a</span>
<span>d</span>
<span>i</span>
<span>n</span>
<span>g</span>
</div>
</div>
</div>
<!-- Preloader Area End -->
<!-- start: Back To Top -->
<div class="progress-wrap" id="scrollUp">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
<!-- end: Back To Top -->
<!-- HEADER START -->
<header class="tj-header-area header-absolute">
<div class="container">
<div class="row">
<div class="col-12 d-flex flex-wrap align-items-center">
<div class="header-info-list d-none d-md-inline-block">
<ul class="ul-reset">
<li><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
<div class="header-menu">
<nav>
<ul>
<li><a href="#resume-section">Resume</a></li>
<li><a href="#skills-section">Skills</a></li>
<li><a href="#contact-section">Contact</a></li>
</ul>
</nav>
</div>
<!--
<div class="header-button">
<a href="#contact-section" class="btn tj-btn-primary">Hire me!</a>
</div> -->
<div class="menu-bar d-lg-none">
<button>
<span></span>
<span></span>
<span></span>
<span></span>
</button>
</div>
</div>
</div>
</div>
</header>
<header class="tj-header-area header-2 header-sticky sticky-out">
<div class="container">
<div class="row">
<div class="col-12 d-flex flex-wrap align-items-center">
<div class="header-info-list d-none d-md-inline-block">
<ul class="ul-reset">
<li><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
<div class="header-menu">
<nav>
<ul>
<li><a href="#resume-section">Resume</a></li>
<li><a href="#skills-section">Skills</a></li>
<li><a href="#contact-section">Contact</a></li>
</ul>
</nav>
</div>
<!-- <div class="header-button">
<a href="#contact-section" class="btn tj-btn-primary">Hire me!</a>
</div>
-->
<div class="menu-bar d-lg-none">
<button>
<span></span>
<span></span>
<span></span>
<span></span>
</button>
</div>
</div>
</div>
</div>
</header>
<!-- HEADER END -->
<main class="site-content" id="content">
<!-- HERO SECTION START -->
<section class="hero-section d-flex align-items-center" id="intro">
<div class="intro_text">
<svg viewBox="0 0 1320 300">
<text x="50%" Y="50%" text-anchor="middle">
HI
</text>
</svg>
</div>
<div class="container">
<div class="row align-items-center">
<div class="col-md-6">
<div class="hero-content-box">
<span class="hero-sub-title">I am Mehul</span>
<h1 class="hero-title">Web Developer +<br>Programmer
</h1>
<div class="hero-image-box d-md-none text-center">
<img src="assets/img/hero/mehul-.png" alt="Mehul Makwana">
</div>
<div class="button-box d-flex flex-wrap align-items-center">
<a href="MEHUL_MAKWANA.pdf" class="btn tj-btn-secondary">Download
CV <i class="flaticon-download"></i></a>
<ul class="ul-reset social-icons">
<li><a href="https://github.com/mehulmakwana08/"><i class="fa-brands fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/mehul-makwana-/"><i class="fa-brands fa-linkedin-in"></i></a></li>
<li><a href="https://www.instagram.com/iam_mehul.08/"><i class="fa-brands fa-instagram"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-6 d-none d-md-block">
<div class="hero-image-box text-center">
<img src="assets/img/hero/mehul-.png" alt="Mehul Makwana">
</div>
</div>
</div>
</div>
</section>
<!-- HERO SECTION END -->
<!-- SERVICES SECTION START
<section class="services-section" id="services-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay=".3s">My Quality Services</h2>
<p class=" wow fadeInUp" data-wow-delay=".4s">We put your ideas and thus your wishes in the
form
of a unique web project that inspires you
and you customers.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="services-widget position-relative">
<div class="service-item current d-flex flex-wrap align-items-center wow fadeInUp"
data-wow-delay=".5s">
<div class="left-box d-flex flex-wrap align-items-center">
<span class="number">01</span>
<h3 class="service-title">Branding Design</h3>
</div>
<div class="right-box">
<p>I break down complex user experinece problems to create integritiy focussed
solutions
that connect billions of people</p>
</div>
<i class="flaticon-up-right-arrow"></i>
<button data-mfp-src="#service-wrapper" class="service-link modal-popup"></button>
</div>
<div class="service-item d-flex flex-wrap align-items-center wow fadeInUp"
data-wow-delay=".6s">
<div class="left-box d-flex flex-wrap align-items-center">
<span class="number">02</span>
<h3 class="service-title">Web Design</h3>
</div>
<div class="right-box">
<p>I break down complex user experinece problems to create integritiy focussed
solutions
that connect billions of people</p>
</div>
<i class="flaticon-up-right-arrow"></i>
<button data-mfp-src="#service-wrapper" class="service-link modal-popup"></button>
</div>
<div class="service-item d-flex flex-wrap align-items-center wow fadeInUp"
data-wow-delay=".7s">
<div class="left-box d-flex flex-wrap align-items-center">
<span class="number">03</span>
<h3 class="service-title">UI/UX Design</h3>
</div>
<div class="right-box">
<p>I break down complex user experinece problems to create integritiy focussed
solutions
that connect billions of people</p>
</div>
<i class="flaticon-up-right-arrow"></i>
<button data-mfp-src="#service-wrapper" class="service-link modal-popup"></button>
</div>
<div class="service-item d-flex flex-wrap align-items-center wow fadeInUp"
data-wow-delay=".8s">
<div class="left-box d-flex flex-wrap align-items-center">
<span class="number">04</span>
<h3 class="service-title">Graphics Design</h3>
</div>
<div class="right-box">
<p>I break down complex user experinece problems to create integritiy focussed
solutions
that connect billions of people</p>
</div>
<i class="flaticon-up-right-arrow"></i>
<button data-mfp-src="#service-wrapper" class="service-link modal-popup"></button>
</div>
<div class="active-bg wow fadeInUp" data-wow-delay=".5s"></div>
</div>
</div>
</div>
</div>
</section>
SERVICES SECTION END -->
<!-- start: Service Popup
<div id="service-wrapper" class="popup_content_area zoom-anim-dialog mfp-hide">
<div class="popup_modal_img">
<img src="./assets/img/services/modal-img.jpg" alt="">
</div>
<div class="popup_modal_content">
<div class="service_details">
<div class="row">
<div class="col-lg-7 col-xl-8">
<div class="service_details_content">
<div class="service_info">
<h6 class="subtitle">SERVICES</h6>
<h2 class="title">UI/UX Design</h2>
<div class="desc">
<p>Elizabeth some dodgy chavs are you taking the piss faff about pardon amongst
car
boot a load of old tosh is cracking goal blow off telling brown.</p>
<p>Brolly show off show off pick your nose and blow off well A bit of how’s your
father tomfoolery blimey, me old mucker starkers Queen’s English dropped a
clanger bite your arm spiffing good time burke Why chancer. Hotpot bum bag
cracking goal young delinquent naff bugger cup of chars bender loo it’s all
gone
to pot the nancy cheeky.</p>
<p>At public school cras bog some dodgy chav Richard Why argy bargy vagabon
William
bender matie boy, off his nut chancer Jeffrey up the kyver say mufty you mug
ummm telling pear shaped Oxford owt to do with me do one so said are you
taking
his.</p>
</div>
<h3 class="title">Services Process</h3>
<div class="desc">
<p>Elizabeth some dodgy chavs are you taking the piss faff about pardon amongst
car
boot a load of old tosh is cracking goal blow off telling brown.</p>
</div>
<ul>
<li>Reinvent Your Business to Better</li>
<li>Pioneering the Internet's First</li>
<li>Pioneering the Design World's First</li>
<li>Pioneering the Design World's First</li>
<li>Pioneering the Design World's First</li>
<li>Pioneering the Design World's First</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-5 col-xl-4">
<div class="tj_main_sidebar">
<div class="sidebar_widget services_list">
<div class="widget_title">
<h3 class="title">All Services</h3>
</div>
</div>
<div class="sidebar_widget contact_form">
<div class="widget_title">
<h3 class="title">Get in Touch</h3>
</div>
<form action="index.html">
<div class="form_group">
<input type="text" name="name" id="name" placeholder="Name"
autocomplete="off">
</div>
<div class="form_group">
<input type="email" name="semail" id="semail" placeholder="Email"
autocomplete="off">
</div>
<div class="form_group">
<textarea name="smessage" id="smessage" placeholder="Your message"
autocomplete="off"></textarea>
</div>
<div class="form_btn">
<button class="btn tj-btn-primary" type="submit">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
end: Service Popup -->
<!-- PORTFOLIO SECTION START
<section class="portfolio-section" id="works-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay=".3s">My Recent Works</h2>
<p class=" wow fadeInUp" data-wow-delay=".4s">We put your ideas and thus your wishes in the
form of a unique web project that inspires
you
and you customers.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="portfolio-filter text-center wow fadeInUp" data-wow-delay=".5s">
<div class="button-group filter-button-group">
<button data-filter="*" class="active">All</button>
<button data-filter=".uxui">UX/UI</button>
<button data-filter=".branding">Branding</button>
<button data-filter=".mobile-app">Apps</button>
<div class="active-bg"></div>
</div>
</div>
<div class="portfolio-box wow fadeInUp" data-wow-delay=".6s">
<div class="portfolio-sizer"></div>
<div class="gutter-sizer"></div>
<div class="portfolio-item branding">
<div class="image-box">
<img src="assets/img/portfolio/2.jpg" alt="">
</div>
<div class="content-box">
<h3 class="portfolio-title">Deloitte</h3>
<p>Project was about precision and information.</p>
<i class="flaticon-up-right-arrow"></i>
<button data-mfp-src="#portfolio-wrapper"
class="portfolio-link modal-popup"></button>
</div>
</div>
<div class="portfolio-item uxui">
<div class="image-box">
<img src="assets/img/portfolio/1.jpg" alt="">
</div>
<div class="content-box">
<h3 class="portfolio-title">New Age</h3>
<p>Project was about precision and information.</p>
<i class="flaticon-up-right-arrow"></i>
<button data-mfp-src="#portfolio-wrapper"
class="portfolio-link modal-popup"></button>
</div>
</div>
<div class="portfolio-item mobile-app">
<div class="image-box">
<img src="assets/img/portfolio/3.jpg" alt="">
</div>
<div class="content-box">
<h3 class="portfolio-title">Sebastian</h3>
<p>Project was about precision and information.</p>
<i class="flaticon-up-right-arrow"></i>
<button data-mfp-src="#portfolio-wrapper"
class="portfolio-link modal-popup"></button>
</div>
</div>
<div class="portfolio-item branding">
<div class="image-box">
<img src="assets/img/portfolio/4.jpg" alt="">
</div>
<div class="content-box">
<h3 class="portfolio-title">Mochnix</h3>
<p>Project was about precision and information.</p>
<i class="flaticon-up-right-arrow"></i>
<button data-mfp-src="#portfolio-wrapper"
class="portfolio-link modal-popup"></button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
PORTFOLIO SECTION END -->
<!-- start: Portfolio Popup
<div id="portfolio-wrapper" class="popup_content_area zoom-anim-dialog mfp-hide">
<div class="popup_modal_img">
<img src="./assets/img/portfolio/modal-img.jpg" alt="">
</div>
<div class="popup_modal_content">
<div class="portfolio_info">
<div class="portfolio_info_text">
<h2 class="title">DStudio</h2>
<div class="desc">
<p>They are was greater open above shelter lets itself under appear sixth open gathering
made
upon can't own above midst gathering gathered he one us saying can't divide.</p>
</div>
<a href="#" class="btn tj-btn-primary">live preview <i class="fal fa-arrow-right"></i></a>
</div>
<div class="portfolio_info_items">
<div class="info_item">
<div class="key">Category</div>
<div class="value">Web Design</div>
</div>
<div class="info_item">
<div class="key">Client</div>
<div class="value">Artboard Studio</div>
</div>
<div class="info_item">
<div class="key">Start Date</div>
<div class="value">August 20, 2023</div>
</div>
<div class="info_item">
<div class="key">Designer</div>
<div class="value"><a href="#">ThemeJunction</a></div>
</div>
</div>
</div>
<div class="portfolio_gallery owl-carousel">
<div class="gallery_item">
<img src="./assets/img/portfolio-gallery/p-gallery-1.jpg" alt="">
</div>
<div class="gallery_item">
<img src="./assets/img/portfolio-gallery/p-gallery-2.jpg" alt="">
</div>
<div class="gallery_item">
<img src="./assets/img/portfolio-gallery/p-gallery-3.jpg" alt="">
</div>
<div class="gallery_item">
<img src="./assets/img/portfolio-gallery/p-gallery-4.jpg" alt="">
</div>
</div>
<div class="portfolio_description">
<h2 class="title">Project Description</h2>
<div class="desc">
<p>The goal is there are many variations of passages of Lorem Ipsum available, but the majority
have
suffered alteration in some form, by injected humour, or randomised words which don't look
even
slightly believable.</p>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have
suffered
alteration in some form, by injected humour, or randomised words which don't look even
slightly
believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't
anything embarrassing hidden in the middle of text.</p>
</div>
</div>
<div class="portfolio_story_approach">
<div class="portfolio_story">
<div class="story_title">
<h4 class="title">The story</h4>
</div>
<div class="story_content">
<p>There are many variations of passages of Lorem Ipsum available, but the majority have
suffered alteration in some form, by injected humour, or randomised words which don't
look
even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to
be
sure there isn't anything embarrassing hidden in the middle of text. There are many
variations of passages of Lorem Ipsum available, but the majority have suffered
alteration
in some form, by injected humour, or randomised words which don't look even slightly
believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't anything embarrassing hidden in the middle of text.</p>
</div>
</div>
<div class="portfolio_approach">
<div class="approach_title">
<h4 class="title">OUR APPROACH</h4>
</div>
<div class="approach_content">
<p>There are many variations of passages of Lorem Ipsum available, but the majority have
suffered alteration in some form, by injected humour, or randomised words which don't
look
even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to
be
sure there isn't anything embarrassing hidden in the middle of text. There are many
variations of passages of Lorem Ipsum available, but the majority have suffered
alteration
in some form, by injected humour, or randomised words which don't look even slightly
believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there
isn't anything embarrassing hidden in the middle of text.</p>
</div>
</div>
</div>
<div class="portfolio_navigation">
<div class="navigation_item prev-project">
<a href="#" class="project">
<i class="fal fa-arrow-left"></i>
<div class="nav_project">
<div class="label">Previous Project</div>
<h3 class="title">Sebastian</h3>
</div>
</a>
</div>
<div class="navigation_item next-project">
<a href="#" class="project">
<div class="nav_project">
<div class="label">Next Project</div>
<h3 class="title">Qwillo</h3>
</div>
<i class="fal fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</div>
end: Portfolio Popup -->
<!-- RESUME SECTION START -->
<section class="resume-section" id="resume-section">
<div class="container">
<div class="row">
<div class="col-md-9">
<div class="section-header wow fadeInUp" data-wow-delay=".4s">
<h2 class="section-title"><i class="flaticon-graduation-cap"></i> My Education</h2>
</div>
<div class="resume-widget">
<div class="resume-item wow fadeInRight" data-wow-delay=".5s">
<div class="time">
2023 – 2025
</div>
<h3 class="resume-title">Master of Computer Application</h3>
<div class="institute">
Atmiya University,
Sem2– CGPA: 7.83
</div>
</div>
<div class="resume-item wow fadeInRight" data-wow-delay=".6s">
<div class="time">
2020 – 2023
</div>
<h3 class="resume-title">Bachelor of Computer Application</h3>
<div class="institute">
T N Rao College (saurashtra university),
– CGPA: 7.50
</div>
</div>
<div class="resume-item wow fadeInRight" data-wow-delay=".7s">
<div class="time">
2019 – 2022
</div>
<h3 class="resume-title">12th Commerce</h3>
<div class="institute">
Saurashtra High School,
– percentage: 57.02%
</div>
</div>
<div class="resume-item wow fadeInRight" data-wow-delay=".8s">
<div class="time">
2017 – 2018
</div>
<h3 class="resume-title">10th SSC</h3>
<div class="institute">
B H Rathod High School,
–percentage: 61.83%
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- RESUME SECTION END -->
<!-- SKILLS SECTION START -->
<section class="skills-section" id="skills-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-header text-center">
<h2 class="section-title wow fadeInUp" data-wow-delay=".3s">My Skills</h2>
<p class=" wow fadeInUp" data-wow-delay=".4s">
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="skills-widget d-flex flex-wrap justify-content-center align-items-center">
<div class="skill-item wow fadeInUp" data-wow-delay=".3s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/python.svg" alt="python">
</div>
<div class="number">92%</div>
</div>
<p>python</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".4s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/c-programming.svg" alt="c-programming">
</div>
<div class="number">50%</div>
</div>
<p>C Programming</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".5s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/php-svgrepo-com.svg" alt="php">
</div>
<div class="number">85%</div>
</div>
<p>Php</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".6s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/html-5-svgrepo-com.svg" alt="html5">
</div>
<div class="number">90%</div>
</div>
<p>html5</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".7s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/css-3-svgrepo-com.svg" alt="css">
</div>
<div class="number">80%</div>
</div>
<p>Css</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/js.svg" alt="JavaScript">
</div>
<div class="number">60%</div>
</div>
<p>JavaScript</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/wp.svg" alt="Wordpress">
</div>
<div class="number">93%</div>
</div>
<p>Wordpress</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/bootstrap-svgrepo-com.svg" alt="bootstrap">
</div>
<div class="number">93%</div>
</div>
<p>bootstrap</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/mysql-logo-svgrepo-com.svg" alt="mysql">
</div>
<div class="number">93%</div>
</div>
<p>MySql</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/mongodb-svgrepo-com.svg" alt="mongodb">
</div>
<div class="number">93%</div>
</div>
<p>mongodb</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/aws-svgrepo-com.svg" alt="aws">
</div>
<div class="number">93%</div>
</div>
<p>AWS</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/linux-svgrepo-com.svg" alt="linux">
</div>
<div class="number">93%</div>
</div>
<p>linux</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/raspberry-pi-svgrepo-com.svg" alt="raspberry-pi">
</div>
<div class="number">93%</div>
</div>
<p>Raspberry pi</p>
</div>
<div class="skill-item wow fadeInUp" data-wow-delay=".8s">
<div class="skill-inner">
<div class="icon-box">
<img src="assets/img/icons/iot-core-svgrepo-com.svg" alt="iot-core">
</div>
<div class="number">93%</div>
</div>
<p>IOT</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- SKILLS SECTION END -->
<!-- TESTIMONIAL SECTION START
<section class="testimonial-section" id="testimonials-section">
<div class="container">
<div class="row">
<div class="col-lg-5">
<div class="section-header">
<h2 class="section-title wow fadeInLeft" data-wow-delay=".3s">My Project</h2>
<p class=" wow fadeInLeft" data-wow-delay=".4s">
</p>
</div>
</div>
<div class="col-lg-7 col-xl-6 offset-xl-1">
<div class="testimonials-widget wow fadeInRight" data-wow-delay=".5s">
<div class="owl-carousel testimonial-carousel">
<div class="testimonial-item">
<div class="top-area d-flex flex-wrap justify-content-between">
<div class="logo-box">
<img src="assets/img/testimonials/logo/1-dark.png" alt="">
</div>
<div class="image-box">
<img src="assets/img/testimonials/user/1.jpg" alt="">
</div>
</div>
<div class="icon-box">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_588)" />
<defs>
<linearGradient id="paint0_linear_263_588" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_589)" />
<defs>
<linearGradient id="paint0_linear_263_589" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
<p class="quote">“Taylor is a professional Designer he really helps my business by
providing value to my business. </p>
<h4 class="name">Brandon Fraser</h4>
<span class="designation">Senior Software Dev, Cosmic Sport</span>
</div>
<div class="testimonial-item">
<div class="top-area d-flex flex-wrap justify-content-between">
<div class="logo-box">
<img src="assets/img/testimonials/logo/2-dark.png" alt="">
</div>
<div class="image-box">
<img src="assets/img/testimonials/user/2.jpg" alt="">
</div>
</div>
<div class="icon-box">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_511)" />
<defs>
<linearGradient id="paint0_linear_263_511" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_510)" />
<defs>
<linearGradient id="paint0_linear_263_510" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
<p class="quote">“Taylor is a professional Designer he really helps my business by
providing value to my business. </p>
<h4 class="name">Tim Bailey</h4>
<span class="designation">SEO Specialist, Theme Junction</span>
</div>
<div class="testimonial-item">
<div class="top-area d-flex flex-wrap justify-content-between">
<div class="logo-box">
<img src="assets/img/testimonials/logo/1-dark.png" alt="">
</div>
<div class="image-box">
<img src="assets/img/testimonials/user/1.jpg" alt="">
</div>
</div>
<div class="icon-box">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_512)" />
<defs>
<linearGradient id="paint0_linear_263_512" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_513)" />
<defs>
<linearGradient id="paint0_linear_263_513" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
<p class="quote">“Taylor is a professional Designer he really helps my business by
providing value to my business. </p>
<h4 class="name">Brandon Fraser</h4>
<span class="designation">Senior Software Dev, Cosmic Sport</span>
</div>
<div class="testimonial-item">
<div class="top-area d-flex flex-wrap justify-content-between">
<div class="logo-box">
<img src="assets/img/testimonials/logo/2-dark.png" alt="">
</div>
<div class="image-box">
<img src="assets/img/testimonials/user/2.jpg" alt="">
</div>
</div>
<div class="icon-box">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_514)" />
<defs>
<linearGradient id="paint0_linear_263_514" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_515)" />
<defs>
<linearGradient id="paint0_linear_263_515" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</div>
<p class="quote">“Taylor is a professional Designer he really helps my business by
providing value to my business. </p>
<h4 class="name">Tim Bailey</h4>
<span class="designation">SEO Specialist, Theme Junction</span>
</div>
<div class="testimonial-item">
<div class="top-area d-flex flex-wrap justify-content-between">
<div class="logo-box">
<img src="assets/img/testimonials/logo/1-dark.png" alt="">
</div>
<div class="image-box">
<img src="assets/img/testimonials/user/1.jpg" alt="">
</div>
</div>
<div class="icon-box">
<svg width="22" height="22" viewBox="0 0 22 22" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M0.105431 2.18998C0.0301532 0.988687 1.02531 -0.00647222 2.2266 0.0688056L19.4961 1.15097C21.2148 1.25867 22.0029 3.34358 20.7852 4.56127L4.5979 20.7486C3.3802 21.9663 1.2953 21.1781 1.1876 19.4594L0.105431 2.18998Z"
fill="url(#paint0_linear_263_512)" />
<defs>
<linearGradient id="paint0_linear_263_512" x1="-0.0363755"
y1="-0.0729998" x2="35.3333" y2="-0.0729991"
gradientUnits="userSpaceOnUse">
<stop offset="1" stop-color="var(--tj-theme-primary)" />
<stop offset="1" stop-color="#140C1C" stop-opacity="0" />
</linearGradient>