-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1016 lines (901 loc) · 50.5 KB
/
index.html
File metadata and controls
1016 lines (901 loc) · 50.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Portfolio of Mayank Singh</title>
<meta property='og:image' content='/assets/images/linkedin-og.png'/>
<meta property='og:description' content="I believe in blending 'experiences' and 'aesthetics' with 'functionality' in every aspect of product development."/>
<meta name='description' content="I believe in blending 'experiences' and 'aesthetics' with 'functionality' in every aspect of product development."/>
<meta property='og:url' content='//mayanksingh.dev/' />
<meta name="author" content="Mayank Singh">
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/normalize.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap-progressbar-3.3.4.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/slick.css">
<link rel="stylesheet" type="text/css" href="assets/css/slick-theme.css">
<link rel="stylesheet" type="text/css" href="assets/css/aos.css" />
<link rel="shortcut icon" href="assets/images/ms1..png" />
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> -->
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> -->
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> -->
</head>
<body>
<div class="preloader">
<div class="loader-placeholder">
<h5>ms.</h5>
<div class="preloader-bar">
<div class="preloader-bar_inner">
<img src="assets/images/LoaderIllustration.svg" alt="Loader Illustration" class="LoaderIllustration">
</div>
</div>
<p>You’re in good hands, just wait a little to be amazed...</p>
<div class="preloader-amt">0%</div>
</div>
</div>
<!--POPUPS-->
<div class="modal fade Feedback_Modal" id="FeedbackModal" tabindex="-1" role="dialog" aria-labelledby="feedbackmodal" aria-hidden="true">
<div class="modal-dialog" role="document">
<span data-dismiss="modal" class="cross">
<svg width="15" height="15" viewBox="0 0 24 24">
<path fill="#092545" d="M23.954 21.03l-9.184-9.095 9.092-9.174-2.832-2.807-9.09 9.179-9.176-9.088-2.81 2.81 9.186 9.105-9.095 9.184 2.81 2.81 9.112-9.192 9.18 9.1z"></path></svg>
</span>
<!-- Hello there! -->
<div class="content-hello-there HidePopups active">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="feedbackmodal">Hello there!</h3>
</div>
<div class="modal-body">
<div class="modalbodytxt">
<p>Thanks for your interest in providing feedback
based on these criterias:</p>
</div>
<ul class="modal-icons">
<li><img src="assets/images/icon-notch.svg" alt="Icon_Notch"></li>
<li><img src="assets/images/icon-speedy.svg" alt="Icon_Notch"></li>
<li><img src="assets/images/icon-chat.svg" alt="Icon_Notch"></li>
<li><img src="assets/images/icon-email.svg" alt="Icon_Notch"></li>
<li><img src="assets/images/icon-price.svg" alt="Icon_Notch"></li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn lets_start">Let’s Start</button>
</div>
</div>
</div>
<!-- Hello there! -->
<!-- Have we ever worked together? -->
<div class="content_worked_together HidePopups">
<div class="modal-content">
<div class="modal-body">
<div class="modalbodytxt">
<h3>Have we ever worked together?</h3>
</div>
</div>
<div class="modal-footer buttons-half">
<button type="button" class="btn show_feedback_popup">Yes</button>
<button type="button" class="btn show_test_project_popup">No</button>
</div>
</div>
</div>
<!-- Have we ever worked together? -->
<form method="post" id="contact-form" name="ContactForm" >
<!-- test-project -->
<div class="test_project HidePopups" id="test_project_hide">
<div class="modal-content">
<!--ERROR-MESSAGE-->
<input type="hidden" name="mode" value="contactForm" >
<div id="contact-errors"></div>
<!--ERROR-MESSAGE-->
<div class="modal-body">
<div class="modalbodytxt">
<h4>Ah snap, then let’s first do a test project
together to see how it goes</h4>
<p>Please enter the following details</p>
</div>
<div class="modal-form">
<ul>
<li><input name="name" type="text" placeholder="Name"></li>
<li><input type="email" name="email" placeholder="Email"></li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn" id="contact-submit">Submit<span class="gif-loader"></span></button>
</div>
</div>
</div>
<!-- test-project -->
<!-- Thankyou! -->
<div id="ContactThankYou" class="thankyou_popup" style="display: none;">
<div class="modal-content">
<div class="modal-body">
<div class="modalbodytxt">
<h3>Thank you!</h3>
<p>I will make sure to get in touch with you
as soon as I can</p>
</div>
</div>
<div class="modal-footer">
<a href="https://mayanksingh.dev" class="btn">Let’s go back to the site</a>
</div>
</div>
</div>
<!-- Thankyou! -->
</form>
<form method="post" id="feedback-form" name="FeedbackForm" >
<!-- Do you think I deliver -->
<div class="content_deliver item active2">
<div class="modal-content">
<div class="modal-body">
<div class="modalbodytxt">
<h4>Do you think I deliver</h4>
<div class="single-icon">
<img src="assets/images/icon-notch.svg" alt="Icon_Notch">
</div>
<h3>Top notch quality?</h3>
</div>
</div>
<div class="modal-footer buttons-half">
<div class="input_radio_hide">
<input type="radio" name="deliver_notch_quality" value="Yes">
<input type="radio" name="deliver_notch_quality" value="No">
</div>
<div id="notch_quality">
<button type="button" class="btn nextdiv" value="Yes" data-info="Yes"> Yes</button>
<button type="button" class="btn nextdiv" value="No" data-info="No"> No</button>
</div>
</div>
</div>
</div>
<!-- Do you think I deliver -->
<!-- Do I really do -->
<div class="conten_speedy item">
<div class="modal-content">
<div class="modal-body">
<div class="modalbodytxt">
<h4>Do I really have</h4>
<div class="single-icon">
<img src="assets/images/icon-speedy.svg" alt="Icon_Notch">
</div>
<h3>Speedy turn around?</h3>
</div>
</div>
<div class="modal-footer buttons-half">
<div class="input_radio_hide">
<input type="radio" name="speedy" value="Yes">
<input type="radio" name="speedy" value="No">
</div>
<div id="speedy_around">
<button type="button" class="btn nextdiv" value="Yes" data-info="Yes"> Yes</button>
<button type="button" class="btn nextdiv" value="No" data-info="No"> No</button>
</div>
</div>
</div>
</div>
<!-- Do I really do -->
<!-- Am I actually -->
<div class="content_chat_available item">
<div class="modal-content">
<div class="modal-body">
<div class="modalbodytxt">
<h4>Am I actually</h4>
<div class="single-icon">
<img src="assets/images/icon-chat.svg" alt="Icon_Notch">
</div>
<h3>Always available to chat?</h3>
</div>
</div>
<div class="modal-footer buttons-half">
<div class="input_radio_hide">
<input type="radio" name="available" value="Yes">
<input type="radio" name="available" value="No">
</div>
<div id="chat_available">
<button type="button" class="btn nextdiv" value="Yes" data-info="Yes"> Yes</button>
<button type="button" class="btn nextdiv" value="No" data-info="No"> No</button>
</div>
</div>
</div>
</div>
<!-- Am I actually -->
<!-- Do you think it’s true that my -->
<div class="content_email_available item">
<div class="modal-content">
<div class="modal-body">
<div class="modalbodytxt">
<h4>Do you think it’s true that my</h4>
<div class="single-icon">
<img src="assets/images/icon-email.svg" alt="Icon_Notch">
</div>
<h3>Email availability is 9.5/10?</h3>
</div>
</div>
<div class="modal-footer buttons-half">
<div class="input_radio_hide">
<input type="radio" name="email_availability" value="Yes">
<input type="radio" name="email_availability" value="No">
</div>
<div id="email_availability">
<button type="button" class="btn nextdiv" value="Yes" data-info="Yes"> Yes</button>
<button type="button" class="btn nextdiv" value="No" data-info="No"> No</button>
</div>
</div>
</div>
</div>
<!-- Do you think it’s true that my -->
<!-- Are my rates -->
<div class="content_rates item">
<div class="modal-content">
<div class="modal-body">
<div class="modalbodytxt">
<h4>Are my rates</h4>
<div class="single-icon">
<img src="assets/images/icon-price.svg" alt="Icon_Notch">
</div>
<h3>Affordable?</h3>
</div>
</div>
<div class="modal-footer buttons-half">
<div class="input_radio_hide">
<input type="radio" name="affordable" value="Yes">
<input type="radio" name="affordable" value="No">
</div>
<div id="affordable">
<button type="button" class="btn nextdiv" value="Yes" data-info="Yes"> Yes</button>
<button type="button" class="btn nextdiv" value="No" data-info="No"> No</button>
</div>
</div>
</div>
</div>
<!-- Are my rates -->
<!-- Thanks for your time! -->
<div class="item" id="content_name_email">
<div class="modal-content">
<!--ERROR-MESSAGE-->
<input type="hidden" name="mode" value="contactForm" >
<div id="form-errors"></div>
<!--ERROR-MESSAGE-->
<div class="modal-body">
<div class="modalbodytxt">
<h4>Thanks for your time!</h4>
<p>In order for me to verify that we have worked or working together,
please provide:</p>
</div>
<div class="modal-form">
<ul>
<li><input name="name" type="text" placeholder="Name"></li>
<li><input type="email" name="email" placeholder="Email"></li>
</ul>
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn" id="form-submit">Submit
<span class="gif-loader"></span>
</button>
</div>
</div>
</div>
<!-- Thanks for your time! -->
<!-- Awesome! -->
<div id="PopupThankYouQaisar" class="awesome_popup" style="display: none;">
<div class="modal-content">
<div class="modal-body">
<div class="modalbodytxt">
<h3>Awesome!</h3>
<p>I will get back to you if I have any further
questions soon</p>
</div>
</div>
<div class="modal-footer">
<a href="https://mayanksingh.dev" class="btn">Let’s go back to the site</a>
</div>
</div>
</div>
<!-- Awesome! -->
</form>
</div>
</div>
<!--POPUPS-->
<!--POPUPSlide-->
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> -->
<!-- <div class="container"> -->
<!-- <div class="modal fade Feedback_Modal" id="FeedbackModal1" tabindex="-1" role="dialog" aria-labelledby="feedbackmodal" aria-hidden="true"> --> -->
<div class="modal fade" id="FeedbackModal1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-exampkle-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="slider-size">
<img src="assets/images/marma.png" style="height: 100%;"/>
</div>
</div>
<div class="item">
<div class="slider-size">
<img src="assets/images/4.png" style="width: 100%;"/>
</div>
</div>
<div class="item">
<div class="slider-size">
<img src="assets/images/sujok.png" style="width: 100%;"/>
</div>
</div>
<div class="item">
<div class="slider-size">
<img src="assets/images/hire.png" style="width: 100%;"/>
</div>
</div>
<div class="item">
<div class="slider-size">
<img src="assets/images/flyer.png" style="width: 100%;"/>
</div>
</div>
<div class="item">
<div class="slider-size">
<img src="assets/images/hydro.png" style="width: 100%;"/>
</div>
</div>
<div class="item">
<div class="slider-size">
<img src="assets/images/1.png" style="height: 100%;"/>
</div>
</div>
<div class="item">
<div class="slider-size">
<img src="assets/images/2.png" style="height: 100%;"/>
</div>
</div>
<div class="item">
<div class="slider-size">
<img src="assets/images/3.png" style="height: 100%;"/>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--POPUPSlide-->
<div class="content-area">
<!--SECTION-HEADER-->
<style type="text/css">
.bgimg {
background-image: url('assets/images/1m.jpg');
background-repeat: no-repeat;
background-position: right center;
//position: relative;
//background-size: cover;
}
</style>
<div class="bgimg">
<div id="me">
<div class="section-auto-height">
<header class="main_h">
<div class="container">
<a class="logo" href="https://mayanksingh.dev">ms.</a>
<div class="mobile-toggle">
<a id="menu"><span></span></a>
</div>
<nav class="menu--inola">
<ul id="nav-click-scroll">
<li class="current"><a href="#me" class="menu__item"><span class="menu__item-name">Who</span></a></li>
<li><a href="#awards" class="menu__item"><span class="menu__item-name">What</span></a></li>
<li><a href="#showcase" class="menu__item"><span class="menu__item-name">Work</span></a></li>
<li><a href="#whyme" class="menu__item"><span class="menu__item-name">Why</span></a></li>
<li><a href="#contact" class="menu__item"><span class="menu__item-name">Write</span></a></li>
</ul>
</nav>
</div>
</header>
<div class="main-hero-section">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-6 hero-txt-col">
<div class="hero-main-txt" data-scroll-speed="5">
<h3>Hi! I am Mayank Singh.<br>I make and break Things.<br>Are you looking for a</h3>
<!-- <br> </br> -->
<h2><span class="typed-txt">Typed Text</span></h2>
<h1>Develo-<br>per</h1>
<br> </br>
<div class="button-row">
<div class="hero-button">
<div class="button-row">
<div><a id="go-award" title="Scroll down"></a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="SocialIcons" data-scroll-speed="15">
<ul>
<li>
<a href="https://github.com/m5ingh" target="_blank" title="Github">
<svg width="60" height="60" fill="#211F1F" viewBox="0 0 24 24">
<path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm2.218 18.616c-.354.069-.468-.149-.468-.336v-1.921c0-.653-.229-1.079-.481-1.296 1.56-.173 3.198-.765 3.198-3.454 0-.765-.273-1.389-.721-1.879.072-.177.312-.889-.069-1.853 0 0-.587-.188-1.923.717-.561-.154-1.159-.231-1.754-.234-.595.003-1.193.08-1.753.235-1.337-.905-1.925-.717-1.925-.717-.379.964-.14 1.676-.067 1.852-.448.49-.722 1.114-.722 1.879 0 2.682 1.634 3.282 3.189 3.459-.2.175-.381.483-.444.936-.4.179-1.413.488-2.037-.582 0 0-.37-.672-1.073-.722 0 0-.683-.009-.048.426 0 0 .46.215.777 1.024 0 0 .405 1.25 2.353.826v1.303c0 .185-.113.402-.462.337-2.782-.925-4.788-3.549-4.788-6.641 0-3.867 3.135-7 7-7s7 3.133 7 7c0 3.091-2.003 5.715-4.782 6.641z"/>
</svg>
</a>
</li>
<li>
<a href="https://wa.me/918884848590" target="_blank" title="Whatsapp">
<svg width="60" height="60" fill="#25D366" viewBox="0 0 24 24">
<path d="M12.031 6.172c-3.181 0-5.767 2.586-5.768 5.766-.001 1.298.38 2.27 1.019 3.287l-.582 2.128 2.182-.573c.978.58 1.911.928 3.145.929 3.178 0 5.767-2.587 5.768-5.766.001-3.187-2.575-5.77-5.764-5.771zm3.392 8.244c-.144.405-.837.774-1.17.824-.299.045-.677.063-1.092-.069-.252-.08-.575-.187-.988-.365-1.739-.751-2.874-2.502-2.961-2.617-.087-.116-.708-.94-.708-1.793s.448-1.273.607-1.446c.159-.173.346-.217.462-.217l.332.006c.106.005.249-.04.39.298.144.347.491 1.2.534 1.287.043.087.072.188.014.304-.058.116-.087.188-.173.289l-.26.304c-.087.086-.177.18-.076.354.101.174.449.741.964 1.201.662.591 1.221.774 1.394.86s.274.072.376-.043c.101-.116.433-.506.549-.68.116-.173.231-.145.39-.087s1.011.477 1.184.564.289.13.332.202c.045.072.045.419-.1.824zm-3.423-14.416c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm.029 18.88c-1.161 0-2.305-.292-3.318-.844l-3.677.964.984-3.595c-.607-1.052-.927-2.246-.926-3.468.001-3.825 3.113-6.937 6.937-6.937 1.856.001 3.598.723 4.907 2.034 1.31 1.311 2.031 3.054 2.03 4.908-.001 3.825-3.113 6.938-6.937 6.938z"/>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!--SECTION-HEADER-->
<!--SECTION-AWARDS-->
<div id="awards" data-color="#663399">
<div class="section-awards SecTopSapce">
<div class="container">
<div class="row">
<div class="col-md-5 col-sm-5">
<div class="awards-title">
<h1>Servi-<br>ces</h1>
</div>
<div class="section-whyme SecTopSapce SecBtmSapce">
<div class="container">
<div class="Skills">
<ul class="row ReasonsSlider">
<li class="col-md-offset-5 col-md-6">
<div class="placeholder">
<div class="icon"><img src=" " alt=""></div>
<div class="about-skills">
<h4>App Development</h4>
<p>I provide custom Web, Mobile and Ecommerce app development services. I also take server maintainence and administration contracts.</p>
</div>
</div>
</li>
<li class="col-md-6">
<div class="placeholder">
<div class="icon"><img src=" " alt=""></div>
<div class="about-skills">
<h4>IoT Development</h4>
<p>I design and develop Internet of Things devices. I can deliver a complete platform if you provide me with the list of functionalities.</p>
</div>
</div>
</li>
<li class="col-md-6">
<div class="placeholder">
<div class="icon"><img src=" " alt=""></div>
<div class="about-skills">
<h4>Graphics Design</h4>
<p>I do Logo, Banner, Flyer, Poster, Social media posts, Channel cover, Infographics, etc. Try my custom stationery documents package for Bussiness cards, Letteheads,etc.</p>
</div>
</div>
</li>
<li class="col-md-offset-5 col-md-6">
<div class="placeholder">
<div class="icon"><img src=" " alt=""></div>
<div class="about-skills">
<h4>UI & UX Design</h4>
<p>I provide wireframing and application design services. In my opinion great experience is not possible without great design. I incorporate best design practices in my work in order to deliver best user experience.</p>
</div>
</div>
</li>
<li class="col-md-offset-1 col-md-6">
<div class="placeholder">
<div class="icon"><img src=" " alt=""></div>
<div class="about-skills">
<h4>Content Writing and SEO</h4>
<p>I aim to provide useful and SEO optimized content designed to keeping eyeballs glued to the platform. I also undertake long term backlink building and social media management contracts.</p>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--SECTION-AWARDS-->
<!--SECTION-SHOWCASE-->
<div id="showcase" data-color="#FFF">
<div class="section-showcase SecTopSapce">
<div class="container">
<h1>Show-<br>case</h1>
<ul class="row">
<li class="col-md-6 ProjectSquidex aos-item">
<a href="https://butterfly.school/" title="">
<div>
<div class="placeholder">
<div class="project-title">
<h4>Butterfly Playschool</h4>
<h2>Website and SEO</h2>
</div>
<div class="project-thumbnail">
<img src="assets/images/butt.jpg" alt="" class="img-responsive">
</div>
</div>
</div>
</a>
</li>
<li class="col-md-6 ProjectSports aos-item">
<a href="https://prdiagnostics.com" title="">
<div>
<div class="placeholder">
<div class="project-title">
<h4>PR Diagnostics</h4>
<h2>Website and Seo</h2>
</div>
<div class="project-thumbnail">
<img src="assets/images/pr.png" alt="" class="img-responsive">
</div>
</div>
</div>
</a>
</li>
<li class="col-md-6 ProjectHappynest aos-item">
<div class="showcase-section-text">
<h3><span>Load more</span> function broke <img class="smily-vector" src="assets/images/smily-vector.svg" alt="smily-vector"><br> because there are more projects to display
<img class="small-hand-vector" src="assets/images/hand-icon-vector.svg" alt="hand-icon">
</h3>
<div class="button-row">
<div><a href="https://github.com/m5ingh" title="View more projects"></a></div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
<!--SECTION-SHOWCASE-->
<!--SECTION-WHYME-->
<div id="whyme" data-color="#092545">
<div class="section-whyme SecTopSapce SecBtmSapce">
<div class="container">
<div class="main-heading width-small">
<h1>Reas-<br>ons</h1>
<p>These “why me” reasons should be enough
to convince someone who is looking for a
developer.<br><br>
But if you’re still in doubt,
</p>
<a class="underline" href="mailto:hello@mayanksingh.dev?subject=Let's_do_a_small_test_together" title="Let’s do a small test together">Let’s do a small test together</a>
</div>
<div class="Skills">
<ul class="row ReasonsSlider">
<li class="col-md-offset-5 col-md-6">
<div class="placeholder">
<div class="icon"><img src="assets/images/icon-notch.svg" alt=""></div>
<div class="about-skills">
<h4>Top notch quality</h4>
<p>Nothing less than the best</p>
</div>
<div class="single_progressbar">
<div class="skill_text">
<svg viewBox="0 0 270 300" width="16" fill="#f55c59">
<path d="M149.5,15.8c-12.4,0-8.2,26.4-8.2,26.4s-26.4,72.9-51.7,92.4c-5.4,5.7-8.8,12-10.9,17.1
c-0.5,1.3-0.9,2.5-1.3,3.6c-1.7,3.4-5.3,8.8-13,13.4l25.3,110c0,0,39.1,5.1,78.4,4.3c15.7,1.3,32.4,1.4,45.6-1.5
c45-9.6,33.7-40.9,33.7-40.9c24.2-18.2,10.5-41,10.5-41c21.6-22.5,0.4-41.4,0.4-41.4s11.7-18.2-3.4-31.9
C236,109,185,120.4,185,120.4c-3.6,0.6-7.3,1.4-11.4,2.4c0,0-17.6,8.2,0-45.3C191.3,24,161.9,15.8,149.5,15.8L149.5,15.8z
M149.5,15.8"/>
<path d="M71.4,270.7l-19.2-91c-1.1-5.2-6.3-9.5-11.7-9.5H4L4,280.1h59.7C69.1,280.2,72.5,275.9,71.4,270.7L71.4,270.7z M71.4,270.7"/>
</svg>
98% agreed
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" data-transitiongoal="98"></div>
</div>
</div>
</div>
</li>
<li class="col-md-6">
<div class="placeholder">
<div class="icon"><img src="assets/images/icon-speedy.svg" alt=""></div>
<div class="about-skills">
<h4>Speedy turn around</h4>
<p>But don’t forget me being a human</p>
</div>
<div class="single_progressbar">
<div class="skill_text">
<svg viewBox="0 0 270 300" width="16" fill="#f55c59">
<path d="M149.5,15.8c-12.4,0-8.2,26.4-8.2,26.4s-26.4,72.9-51.7,92.4c-5.4,5.7-8.8,12-10.9,17.1
c-0.5,1.3-0.9,2.5-1.3,3.6c-1.7,3.4-5.3,8.8-13,13.4l25.3,110c0,0,39.1,5.1,78.4,4.3c15.7,1.3,32.4,1.4,45.6-1.5
c45-9.6,33.7-40.9,33.7-40.9c24.2-18.2,10.5-41,10.5-41c21.6-22.5,0.4-41.4,0.4-41.4s11.7-18.2-3.4-31.9
C236,109,185,120.4,185,120.4c-3.6,0.6-7.3,1.4-11.4,2.4c0,0-17.6,8.2,0-45.3C191.3,24,161.9,15.8,149.5,15.8L149.5,15.8z
M149.5,15.8"/>
<path d="M71.4,270.7l-19.2-91c-1.1-5.2-6.3-9.5-11.7-9.5H4L4,280.1h59.7C69.1,280.2,72.5,275.9,71.4,270.7L71.4,270.7z M71.4,270.7"/>
</svg>
96% agreed
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" data-transitiongoal="96"></div>
</div>
</div>
</div>
</li>
<li class="col-md-6">
<div class="placeholder">
<div class="icon"><img src="assets/images/icon-chat.svg" alt=""></div>
<div class="about-skills">
<h4>Always ready to chat</h4>
<p>Except for when I am dreaming</p>
</div>
<div class="single_progressbar">
<div class="skill_text">
<svg viewBox="0 0 270 300" width="16" fill="#f55c59">
<path d="M149.5,15.8c-12.4,0-8.2,26.4-8.2,26.4s-26.4,72.9-51.7,92.4c-5.4,5.7-8.8,12-10.9,17.1
c-0.5,1.3-0.9,2.5-1.3,3.6c-1.7,3.4-5.3,8.8-13,13.4l25.3,110c0,0,39.1,5.1,78.4,4.3c15.7,1.3,32.4,1.4,45.6-1.5
c45-9.6,33.7-40.9,33.7-40.9c24.2-18.2,10.5-41,10.5-41c21.6-22.5,0.4-41.4,0.4-41.4s11.7-18.2-3.4-31.9
C236,109,185,120.4,185,120.4c-3.6,0.6-7.3,1.4-11.4,2.4c0,0-17.6,8.2,0-45.3C191.3,24,161.9,15.8,149.5,15.8L149.5,15.8z
M149.5,15.8"/>
<path d="M71.4,270.7l-19.2-91c-1.1-5.2-6.3-9.5-11.7-9.5H4L4,280.1h59.7C69.1,280.2,72.5,275.9,71.4,270.7L71.4,270.7z M71.4,270.7
"/>
</svg>
89% agreed
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" data-transitiongoal="89"></div>
</div>
</div>
</div>
</li>
<li class="col-md-offset-5 col-md-6">
<div class="placeholder">
<div class="icon"><img src="assets/images/icon-email.svg" alt=""></div>
<div class="about-skills">
<h4>Email Availability 9.5/10</h4>
<p>I mean it - <a class="underline" href="mailto:hello@mayanksingh.dev?subject=Testing_Email_Availability" title="Email me">Test it now</a></p>
</div>
<div class="single_progressbar">
<div class="skill_text">
<svg viewBox="0 0 270 300" width="16" fill="#f55c59">
<path d="M149.5,15.8c-12.4,0-8.2,26.4-8.2,26.4s-26.4,72.9-51.7,92.4c-5.4,5.7-8.8,12-10.9,17.1
c-0.5,1.3-0.9,2.5-1.3,3.6c-1.7,3.4-5.3,8.8-13,13.4l25.3,110c0,0,39.1,5.1,78.4,4.3c15.7,1.3,32.4,1.4,45.6-1.5
c45-9.6,33.7-40.9,33.7-40.9c24.2-18.2,10.5-41,10.5-41c21.6-22.5,0.4-41.4,0.4-41.4s11.7-18.2-3.4-31.9
C236,109,185,120.4,185,120.4c-3.6,0.6-7.3,1.4-11.4,2.4c0,0-17.6,8.2,0-45.3C191.3,24,161.9,15.8,149.5,15.8L149.5,15.8z
M149.5,15.8"/>
<path d="M71.4,270.7l-19.2-91c-1.1-5.2-6.3-9.5-11.7-9.5H4L4,280.1h59.7C69.1,280.2,72.5,275.9,71.4,270.7L71.4,270.7z M71.4,270.7
"/>
</svg>
95% agreed
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" data-transitiongoal="95"></div>
</div>
</div>
</div>
</li>
<li class="col-md-offset-1 col-md-6">
<div class="placeholder">
<div class="icon"><img src="assets/images/icon-price.svg" alt=""></div>
<div class="about-skills">
<h4>Affordable</h4>
<p>Don’t mix it up with “Cheap”</p>
</div>
<div class="single_progressbar">
<div class="skill_text">
<svg viewBox="0 0 270 300" width="16" fill="#f55c59">
<path d="M149.5,15.8c-12.4,0-8.2,26.4-8.2,26.4s-26.4,72.9-51.7,92.4c-5.4,5.7-8.8,12-10.9,17.1
c-0.5,1.3-0.9,2.5-1.3,3.6c-1.7,3.4-5.3,8.8-13,13.4l25.3,110c0,0,39.1,5.1,78.4,4.3c15.7,1.3,32.4,1.4,45.6-1.5
c45-9.6,33.7-40.9,33.7-40.9c24.2-18.2,10.5-41,10.5-41c21.6-22.5,0.4-41.4,0.4-41.4s11.7-18.2-3.4-31.9
C236,109,185,120.4,185,120.4c-3.6,0.6-7.3,1.4-11.4,2.4c0,0-17.6,8.2,0-45.3C191.3,24,161.9,15.8,149.5,15.8L149.5,15.8z
M149.5,15.8"/>
<path d="M71.4,270.7l-19.2-91c-1.1-5.2-6.3-9.5-11.7-9.5H4L4,280.1h59.7C69.1,280.2,72.5,275.9,71.4,270.7L71.4,270.7z M71.4,270.7"/>
</svg>
84% agreed
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" data-transitiongoal="84"></div>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="whyme-section-txt">
<p>Agree or disagree to any of the above?</p>
<div class="button-row">
<div><a href="#" title="Post your honest feedback" data-toggle="modal" data-target="#FeedbackModal"></a></div>
</div>
</div>
</div>
</div>
</div>
<!--SECTION-WHYME-->
<!--SECTION-CONTACTS-->
<div id="contact" data-color="#fff">
<div id="Section_Full_Height" style="height: 500px;">
<div id="Height_Contacts" class="section-contacts SecTopBtmSpace">
<div class="container">
<div class="ContactsWrapper">
<div class="col-md-8 col-sm-7">
<div class="contact-email">
<img class="hand-left" src="assets/images/FooterIllustrationLeft.svg" alt="img">
<div class="text-wrap">
<p>For any query drop me a line</p>
<form action="https://formspree.io/xpzdlpjp" method="POST">
<lable>
Your Name:
<input type="text" name="name">
</lable>
<label>
Your email:
<input type="text" name="_replyto">
</label>
<label>
Your message:
<textarea name="message"></textarea>
</label>
<!-- your other form fields go here -->
<button type="submit">Send</button>
</form>
</div>
</div>
</div>
<div class="col-md-4 col-sm-5">
<div class="resume-wrap">
<div class="download-resume">
<div class="text-wrap">
<ul>
<li>
<a href=" " target="_blank" title="Twitter">
<svg width="60" height="60" fill="#00acee" viewBox="0 0 24 24">
<path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm6.066 9.645c.183 4.04-2.83 8.544-8.164 8.544-1.622 0-3.131-.476-4.402-1.291 1.524.18 3.045-.244 4.252-1.189-1.256-.023-2.317-.854-2.684-1.995.451.086.895.061 1.298-.049-1.381-.278-2.335-1.522-2.304-2.853.388.215.83.344 1.301.359-1.279-.855-1.641-2.544-.889-3.835 1.416 1.738 3.533 2.881 5.92 3.001-.419-1.796.944-3.527 2.799-3.527.825 0 1.572.349 2.096.907.654-.128 1.27-.368 1.824-.697-.215.671-.67 1.233-1.263 1.589.581-.07 1.135-.224 1.649-.453-.384.578-.87 1.084-1.433 1.489z"/>
</svg>
</a>
</li>
<li>
<a href="https://github.com/m5ingh" target="_blank" title="Github">
<svg width="60" height="60" fill="#211F1F" viewBox="0 0 24 24">
<path d="M12 0c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm2.218 18.616c-.354.069-.468-.149-.468-.336v-1.921c0-.653-.229-1.079-.481-1.296 1.56-.173 3.198-.765 3.198-3.454 0-.765-.273-1.389-.721-1.879.072-.177.312-.889-.069-1.853 0 0-.587-.188-1.923.717-.561-.154-1.159-.231-1.754-.234-.595.003-1.193.08-1.753.235-1.337-.905-1.925-.717-1.925-.717-.379.964-.14 1.676-.067 1.852-.448.49-.722 1.114-.722 1.879 0 2.682 1.634 3.282 3.189 3.459-.2.175-.381.483-.444.936-.4.179-1.413.488-2.037-.582 0 0-.37-.672-1.073-.722 0 0-.683-.009-.048.426 0 0 .46.215.777 1.024 0 0 .405 1.25 2.353.826v1.303c0 .185-.113.402-.462.337-2.782-.925-4.788-3.549-4.788-6.641 0-3.867 3.135-7 7-7s7 3.133 7 7c0 3.091-2.003 5.715-4.782 6.641z"/>
</svg>
</a>
</li>
<li>
<a href="https://wa.me/918884848590" target="_blank" title="Whatsapp">
<svg width="60" height="60" fill="#25D366" viewBox="0 0 24 24">
<path d="M12.031 6.172c-3.181 0-5.767 2.586-5.768 5.766-.001 1.298.38 2.27 1.019 3.287l-.582 2.128 2.182-.573c.978.58 1.911.928 3.145.929 3.178 0 5.767-2.587 5.768-5.766.001-3.187-2.575-5.77-5.764-5.771zm3.392 8.244c-.144.405-.837.774-1.17.824-.299.045-.677.063-1.092-.069-.252-.08-.575-.187-.988-.365-1.739-.751-2.874-2.502-2.961-2.617-.087-.116-.708-.94-.708-1.793s.448-1.273.607-1.446c.159-.173.346-.217.462-.217l.332.006c.106.005.249-.04.39.298.144.347.491 1.2.534 1.287.043.087.072.188.014.304-.058.116-.087.188-.173.289l-.26.304c-.087.086-.177.18-.076.354.101.174.449.741.964 1.201.662.591 1.221.774 1.394.86s.274.072.376-.043c.101-.116.433-.506.549-.68.116-.173.231-.145.39-.087s1.011.477 1.184.564.289.13.332.202c.045.072.045.419-.1.824zm-3.423-14.416c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm.029 18.88c-1.161 0-2.305-.292-3.318-.844l-3.677.964.984-3.595c-.607-1.052-.927-2.246-.926-3.468.001-3.825 3.113-6.937 6.937-6.937 1.856.001 3.598.723 4.907 2.034 1.31 1.311 2.031 3.054 2.03 4.908-.001 3.825-3.113 6.938-6.937 6.938z"/>
</svg>
</a>
</li>
</ul>
</div>
<img class="hand-right" src="assets/images/FooterIllustrationRight.svg" alt="img">
<img class="hand-right-mob" src="assets/images/FooterIllustrationRightMob.svg" alt="img">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--SECTION-CONTACTS-->
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="assets/js/jquery-3.3.1.min.js"></script>
<script src="assets/js/parallax.js"></script>
<script src="assets/js/typed.js"></script>
<script src="assets/js/plugins.js"></script>
<script src="assets/js/tilt.jquery.js"></script>
<script src="assets/js/slick.js"></script>
<script src=assets/js/script-forms.js></script>
<!--change-smooth-background-->
<script src=assets/js/jquery.scrollie.min.js></script>
<script src=assets/js/jQuery.scrollSpeed.js></script>
<script src="assets/js/aos.js"></script>
<!--click-to-move-->
<script src=assets/js/jquery.nav.js></script>
<script src="//code.tidio.co/fmokgvejtdkltbde5rhsib2akujyhzqi.js" async></script>
<script src="assets/js/script.js"></script>
<script>
if (screen && screen.width < 992) {
$(".ReasonsSlider").slick({
dots: true,
arrows: false,
infinite: true,
centerMode: true,
centerPadding: '40px',
slidesToShow: 1,
slidesToScroll: 3
});
}
$(window).scroll(function() {
var $height = $(window).scrollTop();
if($height > 4500) {
$('.ContactsWrapper').addClass('on-scroll-addiv');
} else {
$('.ContactsWrapper').removeClass('on-scroll-addiv');
}
});
if (screen && screen.width > 1199) {
$(window).scroll(function() {
var $height = $(window).scrollTop();
if($height > 3200) {
$('.section-showcase').addClass('add_why_me');
} else {
$('.section-showcase').removeClass('add_why_me');
}
});
}
//LAST-SECTION-FULL-HEIGHT
if (screen && screen.width > 767) {
$(function(){
var windowH = $(window).height();
var wrapperH = $('#Section_Full_Height').height();
if(windowH > wrapperH) {
$('#Section_Full_Height').css({'height':($(window).height())+'px'});
}
$(window).resize(function(){
var windowH = $(window).height();
var wrapperH = $('#Section_Full_Height').height();
var differenceH = windowH - wrapperH;
var newH = wrapperH + differenceH;
var truecontentH = $('#Height_Contacts').height();
if(windowH > truecontentH) {
$('#Section_Full_Height').css('height', (newH)+'px');
}
})
});
}
//tilt-effect-for-portfolio-section
$('.js-tilt').tilt({
maxTilt: 12,
perspective: 2500, // Transform perspective, the lower the more extreme the tilt gets.
easing: "cubic-bezier(.03,.98,.52,.99)", // Easing on enter/exit.
//scale: 0.95, // 2 = 200%, 1.5 = 150%, etc..
speed: 150, // Speed of the enter/exit transition.
transition: true, // Set a transition on enter/exit.
disableAxis: null, // What axis should be disabled. Can be X or Y.
reset: true, // If the tilt effect has to be reset on exit.
glare: false, // Enables glare effect
maxGlare: 0.5 // From 0 - 1.
})
//HERO-SECTION-TYPED-TXT
document.addEventListener("DOMContentLoaded", function () {
Typed.new(".typed-txt", {
strings: ["Web and Mobile App", "Graphics", "Full Stack", "Internet of Things"],
typeSpeed: 70,
backSpeed: 50,
startDelay: 0,
backDelay: 2000,