-
Notifications
You must be signed in to change notification settings - Fork 0
/
onepage.html
2059 lines (1805 loc) · 88.3 KB
/
onepage.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="zxx">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- color of address bar in mobile browser -->
<meta name="theme-color" content="#2B2B35">
<!-- favicon -->
<link rel="shortcut icon" href="img/dc.png" type="image/x-icon">
<!-- bootstrap css -->
<link rel="stylesheet" href="css/plugins/bootstrap.min.css">
<!-- font awesome css -->
<link rel="stylesheet" href="css/plugins/font-awesome.min.css">
<!-- icon -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- swiper css -->
<link rel="stylesheet" href="css/plugins/swiper.min.css">
<!-- fancybox css -->
<link rel="stylesheet" href="css/plugins/fancybox.min.css">
<!-- main css -->
<link rel="stylesheet" href="css/style.css">
<title>Dhanraj onepage</title>
</head>
<body>
<!-- app -->
<div class="art-app art-app-onepage">
<!-- mobile top bar -->
<div class="art-mobile-top-bar"></div>
<!-- app wrapper -->
<div class="art-app-wrapper">
<!-- app container end -->
<div class="art-app-container">
<!-- info bar -->
<div class="art-info-bar">
<!-- menu bar frame -->
<div class="art-info-bar-frame">
<!-- info bar header -->
<div class="art-info-bar-header">
<!-- info bar button -->
<a class="art-info-bar-btn" href="#.">
<!-- icon -->
<i class="fas fa-ellipsis-v"></i>
</a>
<!-- info bar button end -->
</div>
<!-- info bar header end -->
<!-- info bar header -->
<div class="art-header">
<!-- avatar -->
<div class="art-avatar">
<a data-fancybox="avatar" href="img/face-1.jpg" class="art-avatar-curtain">
<img src="img/face-1.jpg" alt="avatar">
<i class="fas fa-expand"></i>
</a>
<!-- available -->
<div class="art-lamp-light">
<!-- add class 'art-not-available' if not available-->
<div class="art-available-lamp"></div>
</div>
</div>
<!-- avatar end -->
<!-- name -->
<h5 class="art-name mb-10"><a href="https://dhanrajchoudhary244.github.io/portfolio/">Dhanraj
Choudhary</a></h5>
<!-- post -->
<div class="art-sm-text">
<a href="https://dhanrajchoudhary244.github.io/portfolio/"> Full Stack Developer <br>Blogger,</a>
</div>
</div>
<!-- info bar header end -->
<!-- scroll frame -->
<div id="scrollbar2" class="art-scroll-frame">
<!-- info bar about -->
<div class="art-table p-15-15">
<!-- about text -->
<ul>
<!-- country -->
<li>
<h6>Residence:</h6><span>India</span>
</li>
<!-- city -->
<li>
<h6>City:</h6><span>Ajmer</span>
</li>
<!-- age -->
<li>
<h6>Age:</h6><span>21</span>
</li>
</ul>
</div>
<!-- info bar about end -->
<!-- divider -->
<div class="art-ls-divider"></div>
<!-- language skills -->
<div class="art-lang-skills p-30-15">
<!-- skill -->
<div class="art-lang-skills-item">
<div id="circleprog1" class="art-cirkle-progress"></div>
<!-- title -->
<h6>Hindi</h6>
</div>
<!-- skill end -->
<!-- skill -->
<div class="art-lang-skills-item">
<div id="circleprog2" class="art-cirkle-progress"></div>
<!-- title -->
<h6>English</h6>
</div>
<!-- skill end -->
<!-- skill -->
<div class="art-lang-skills-item">
<div id="circleprog3" class="art-cirkle-progress"></div>
<!-- title -->
<h6>Native (Rajasthani)</h6>
</div>
<!-- skill end -->
</div>
<!-- language skills end -->
<!-- divider -->
<div class="art-ls-divider"></div>
<!-- hard skills -->
<div class="art-hard-skills p-30-15">
<!-- skill -->
<div class="art-hard-skills-item">
<div class="art-skill-heading">
<!-- title -->
<h6>html</h6>
</div>
<!-- progressbar frame -->
<div class="art-line-progress">
<!-- progressbar -->
<div id="lineprog1"></div>
</div>
<!-- progressbar frame end -->
</div>
<!-- skill end -->
<!-- skill -->
<div class="art-hard-skills-item">
<div class="art-skill-heading">
<!-- title -->
<h6>CSS</h6>
</div>
<!-- progressbar frame -->
<div class="art-line-progress">
<!-- progressbar -->
<div id="lineprog2"></div>
</div>
<!-- progressbar frame end -->
</div>
<!-- skill end -->
<!-- skill -->
<div class="art-hard-skills-item">
<div class="art-skill-heading">
<!-- title -->
<h6>Js</h6>
</div>
<!-- progressbar frame -->
<div class="art-line-progress">
<!-- progressbar -->
<div id="lineprog3"></div>
</div>
<!-- progressbar frame end -->
</div>
<!-- skill end -->
<!-- skill -->
<div class="art-hard-skills-item">
<div class="art-skill-heading">
<!-- title -->
<h6>NodeJs</h6>
</div>
<!-- progressbar frame -->
<div class="art-line-progress">
<!-- progressbar -->
<div id="lineprog6"></div>
</div>
<!-- progressbar frame end -->
</div>
<!-- skill end -->
<!-- skill -->
<div class="art-hard-skills-item">
<div class="art-skill-heading">
<!-- title -->
<h6>PHP</h6>
</div>
<!-- progressbar frame -->
<div class="art-line-progress">
<!-- progressbar -->
<div id="lineprog4"></div>
</div>
<!-- progressbar frame end -->
</div>
<!-- skill end -->
<!-- skill -->
<div class="art-hard-skills-item">
<div class="art-skill-heading">
<!-- title -->
<h6>Wordpress</h6>
</div>
<!-- progressbar frame -->
<div class="art-line-progress">
<!-- progressbar -->
<div id="lineprog5"></div>
</div>
<!-- progressbar frame end -->
</div>
<!-- skill end -->
</div>
<!-- language skills end -->
<!-- divider -->
<div class="art-ls-divider"></div>
<!-- knowledge list -->
<ul class="art-knowledge-list p-15-0">
<!-- list item -->
<li>Bootstrap</li>
<!-- list item -->
<li> Sass,Css</li>
<!-- list item -->
<li>Wordpress(Elementor)</li>
<!-- list item -->
<li>GIT knowledge</li>
</ul>
<!-- knowledge list end -->
<!-- divider -->
<div class="art-ls-divider"></div>
<!-- links frame -->
<div class="art-links-frame p-15-15">
<!-- download cv button -->
<a href="files/dhanraj choudhary.pdf" class="art-link" download>Download cv <i
class="fas fa-download"></i></a>
</div>
<!-- links frame end -->
</div>
<!-- scroll frame end -->
<!-- sidebar social -->
<div class="art-ls-social" style="justify-content: space-between;">
<!-- social link -->
<style>
a {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding-top: 5px;
margin-top: 10px;
}
p {
visibility: hidden;
}
i:hover+p {
visibility: visible;
}
</style>
<a href="index.html"><i class="bi bi-house-heart-fill"></i>
<p>Home</p>
</a>
<!-- social link -->
<a href="history.html"><i class="bi bi-clock-history"></i>
<p>History</p>
</a>
<!-- social link -->
<a href="contact.html"><i class="bi bi-person-lines-fill"></i>
<p>Contact</p>
</a>
<!-- social link -->
<a href="blog-post.html">
<i class="bi bi-file-earmark-break"></i>
<p>Blogs</p>
</a>
<!-- social link -->
<a href="portfolio-single.html"><i class="bi bi-briefcase"></i>
<p>Portfolio</p>
</a>
<!-- social link -->
<a href="onepage.html" target="_blank"><i style="margin-right: 30px;" class="bi bi-box-seam"></i>
<p>OnePage</p>
</a>
</div>
<!-- sidebar social end -->
</div>
<!-- menu bar frame end -->
</div>
<!-- info bar end -->
<!-- content -->
<div class="art-content">
<!-- curtain -->
<div class="art-curtain"></div>
<!-- top background -->
<div class="art-top-bg" style="background-image: url(img/bg.jpg)">
<!-- overlay -->
<div class="art-top-bg-overlay"></div>
<!-- overlay end -->
</div>
<!-- top background end -->
<!-- swup container -->
<div class="transition-fade" id="swup">
<!-- scroll frame -->
<div id="scrollbar" class="art-scroll-frame">
<!-- container -->
<div class="container-fluid">
<!-- row -->
<div class="row p-60-0 p-lg-30-0 p-md-15-0">
<!-- col -->
<div class="col-lg-12">
<!-- banner -->
<div class="art-a art-banner" style="background-image: url(img/bg.jpg)">
<!-- banner back -->
<div class="art-banner-back"></div>
<!-- banner dec -->
<div class="art-banner-dec"></div>
<!-- banner overlay -->
<div class="art-banner-overlay">
<!-- main title -->
<div class="art-banner-title">
<!-- title -->
<h1 class="mb-15">Discover my Amazing <br>Art Space!</h1>
<!-- suptitle -->
<div class="art-lg-text art-code mb-25"><<i>code</i>> I build <span class="txt-rotate"
data-period="2000"
data-rotate='[ "web interfaces.", "ecommerce web.", "backened.", "plateform independent app." ]'></span></<i>code</i>>
</div>
<div class="art-buttons-frame">
<!-- button -->
<a href="#." class="art-btn art-btn-md"><span>Explore now</span></a>
<!-- button -->
<a href="#." class="art-link art-white-link art-w-chevron">Hire me</a>
</div>
</div>
<!-- main title end -->
<!-- photo -->
<img src="img/face-2.png" class="art-banner-photo" alt="Your Name">
</div>
<!-- banner overlay end -->
</div>
<!-- banner end -->
</div>
<!-- col end -->
</div>
<!-- row end -->
</div>
<!-- container end -->
<!-- container -->
<div class="container-fluid">
<!-- row -->
<div class="row p-30-0">
<!-- col -->
<div class="col-md-4 col-6">
<!-- couner frame -->
<div class="art-counter-frame">
<!-- counter -->
<div class="art-counter-box">
<!-- counter number -->
<span class="art-counter">1</span><span class="art-counter-plus">+</span>
</div>
<!-- counter end -->
<!-- title -->
<h6>Years Experience</h6>
</div>
<!-- couner frame end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-md-4 col-6">
<!-- couner frame -->
<div class="art-counter-frame">
<!-- counter -->
<div class="art-counter-box">
<!-- counter number -->
<span class="art-counter">10</span><span class="art-counter-plus">+</span>
</div>
<!-- counter end -->
<!-- title -->
<h6>Completed Projects</h6>
</div>
<!-- couner frame end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-md-4 col-6">
<!-- couner frame -->
<div class="art-counter-frame">
<!-- counter -->
<div class="art-counter-box">
<!-- counter number -->
<span class="art-counter">20</span>
</div>
<!-- counter end -->
<!-- title -->
<h6>Happy Customers</h6>
</div>
<!-- couner frame end -->
</div>
<!-- col end -->
</div>
<!-- row end -->
</div>ner end -->
<!-- container -->
<div class="container-fluid">
<!-- row -->
<div class="row">
<!-- col -->
<div class="col-lg-12">
<!-- section title -->
<div class="art-section-title">
<!-- title frame -->
<div class="art-title-frame">
<!-- title -->
<h4>My Services</h4>
</div>
<!-- title frame end -->
</div>
<!-- section title end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-lg-4 col-md-6">
<!-- service -->
<div class="art-a art-service-icon-box">
<!-- service content -->
<div class="art-service-ib-content">
<!-- title -->
<h5 class="mb-15">Web Development</h5>
<!-- text -->
<div class="mb-15">
<ul>
<li> Responsive design: Websites are optimized for viewing on all devices,
including desktops, laptops, tablets, and smartphones.</li>
<li> Accessibility: Websites are designed with accessibility in mind, to ensure that
users
with disabilities can access and use the site.
</li>
<li>Performance: Websites should be optimized for fast loading times, so that they are
easily
accessible to all users, regardless of their internet connection speed</li>
<li>Search engine optimization: Websites are optimized for search engines, so that
they
are easily discoverable by users.
</li>
<li> Security: Websites are secure, to protect users' personal information and
prevent
hacking attempts.</li>
<li> Standards-compliant code: Websites are be coded to comply with web standards, so
that
they are compatible with all browsers and devices.</li>
<li> Usability: Websites are be easy to use, with a clear and consistent layout,
intuitive
navigation, and well-organized content.</li>
<li> Good testing: Websites are be thoroughly tested for compatibility and performance
across
different platforms and devices.</li>
</ul>
</div>
<!-- button -->
<div class="art-buttons-frame"><a
href="https://dhanrajchoudhary244.github.io/dashboardPortfolio/contact.html"
class="art-link art-color-link art-w-chevron">Order now</a></div>
</div>
<!-- service content end -->
</div>
<!-- service end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-lg-4 col-md-6">
<!-- service -->
<div class="art-a art-service-icon-box">
<!-- service content -->
<div class="art-service-ib-content">
<!-- title -->
<h5 class="mb-15">UI/UX Design</h5>
<!-- text -->
<div class="mb-15">
<ul>
<li>Research: Conducting user research to understand user needs, behaviors, and goals.
</li>
<li>Design: Creating wireframes and mockups to visualize the layout and interactions of
the product.</li>
<li>Development: Building and implementing the product, using code and web development
technologies.</li>
<li>Testing: Testing the product with users to gather feedback and identify any issues
that need to be addressed.</li>
<li>Iteration: Continuously improving the product based on user feedback and testing.</li>
</ul>
</div>
<!-- button -->
<div class="art-buttons-frame"><a
href="https://dhanrajchoudhary244.github.io/dashboardPortfolio/contact.html"
class="art-link art-color-link art-w-chevron">Order now</a></div>
</div>
<!-- service content end -->
</div>
<!-- service end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-lg-4 col-md-6">
<!-- service -->
<div class="art-a art-service-icon-box">
<!-- service content -->
<div class="art-service-ib-content">
<!-- title -->
<h5 class="mb-15">Advertising</h5>
<!-- text -->
<div class="mb-15">
<ul>
<li> Paid search advertising: This service involves creating and managing campaigns on
search engines such as Google and Bing, to help customers' ads appear at the top of
search results when people search for specific keywords.</li>
<li>Display advertising: This service involves creating and placing banner ads on websites
across the internet, to help customers reach a wide audience and increase brand
awareness.</li>
<li>Social media advertising: This service involves creating and managing ad campaigns on
social media platforms such as Facebook, Instagram, and Twitter, to help customers reach
specific audiences and promote their products or services.</li>
<li>
Video advertising: This service involves creating and running video ads on platforms
such as YouTube and Vimeo, to help customers reach a wider audience, increase brand
awareness and drive conversions</li>
<li>Influencer marketing: This service involves finding and partnering with influential
people in a particular niche to promote the customer's products or services.</li>
<li>Retargeting: This service involves showing ads to people who have previously visited
the customer's website, to encourage them to return and make a purchase.</li>
</ul>
</div>
<!-- button -->
<div class="art-buttons-frame"><a
href="https://dhanrajchoudhary244.github.io/dashboardPortfolio/contact.html"
class="art-link art-color-link art-w-chevron">Order now</a></div>
</div>
<!-- service content end -->
</div>
<!-- service end -->
</div>
<!-- col end -->
</div>
<!-- row end -->
</div>
<!-- container end -->
<!-- container -->
<div class="container-fluid">
<!-- row -->
<div class="row p-0-0">
<!-- col -->
<div class="col-lg-12">
<!-- section title -->
<div class="art-section-title">
<!-- title frame -->
<div class="art-title-frame">
<!-- title -->
<h4>Price Plans</h4>
</div>
<!-- title frame end -->
</div>
<!-- section title end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-lg-4">
<!-- price -->
<div class="art-a art-price">
<!-- price body -->
<div class="art-price-body">
<h5 class="mb-30">Starter Price</h5>
<!-- price cost -->
<div class="art-price-cost">
<div class="art-number"><span>₹</span>8000<span>10d</span></div>
</div>
<!-- price cost end -->
<!-- price list -->
<ul class="art-price-list">
<!-- list item -->
<li>Ui Design</li>
<!-- list item -->
<li>Web Development</li>
<!-- list item -->
<li class="art-empty-item">Logo design</li>
<!-- list item -->
<li class="art-empty-item">SEO optimization</li>
<!-- list item -->
<li class="art-empty-item">Wordpress integration</li>
</ul>
<!-- price list end -->
<!-- button -->
<a href="https://dhanrajchoudhary244.github.io/dashboardPortfolio/contact.html"
class="art-link art-color-link art-w-chevron">Order now</a>
<div class="art-asterisk"><sup>*</sup>Free only when ordering paid services</div>
</div>
<!-- price body end -->
</div>
<!-- price end -->
</div>
<!-- grid -->
<!-- col -->
<div class="col-lg-4">
<!-- price -->
<div class="art-a art-price art-popular-price">
<!-- price body -->
<div class="art-price-body">
<h5 class="mb-30">Standard Plan</h5>
<!-- price cost -->
<div class="art-price-cost">
<div class="art-number"><span>₹</span>12000<span>20d</span></div>
</div>
<!-- price cost end -->
<!-- price list -->
<ul class="art-price-list">
<!-- list item -->
<li>Ui Design</li>
<!-- list item -->
<li>Web Development</li>
<!-- list item -->
<li>Logo design</li>
<!-- list item -->
<li class="art-empty-item">SEO optimization</li>
<!-- list item -->
<li class="art-empty-item">Wordpress integration</li>
</ul>
<!-- price list end -->
<!-- button -->
<a href="https://dhanrajchoudhary244.github.io/dashboardPortfolio/contact.html"
class="art-link art-color-link art-w-chevron">Order now</a>
</div>
<!-- price body end -->
</div>
<!-- price end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-lg-4">
<!-- price -->
<div class="art-a art-price">
<!-- price body -->
<div class="art-price-body">
<h5 class="mb-30"> Premium Plan</h5>
<!-- price cost -->
<div class="art-price-cost">
<div class="art-number"><span>₹</span>15000<span>m</span></div>
</div>
<!-- price cost end -->
<!-- price list -->
<ul class="art-price-list">
<!-- list item -->
<li>Ui Design</li>
<!-- list item -->
<li>Web Development</li>
<!-- list item -->
<li>Logo design</li>
<!-- list item -->
<li>SEO optimization</li>
<!-- list item -->
<li>Wordpress integration</li>
</ul>
<!-- price list end -->
<!-- button -->
<a href="https://dhanrajchoudhary244.github.io/dashboardPortfolio/contact.html"
class="art-link art-color-link art-w-chevron">Order now</a>
</div>
<!-- price body end -->
</div>
<!-- price end -->
</div>
<!-- col end -->
</div>
<!-- row end -->
</div>
<!-- container end -->
<!-- container -->
<div class="container-fluid">
<!-- row -->
<div class="row">
<!-- col -->
<div class="col-lg-12">
<!-- section title -->
<div class="art-section-title">
<!-- title frame -->
<div class="art-title-frame">
<!-- title -->
<h4>Recommendations</h4>
</div>
<!-- title frame end -->
</div>
<!-- section title end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-lg-12">
<!-- slider container -->
<div class="swiper-container art-testimonial-slider" style="overflow: visible">
<!-- slider wrapper -->
<div class="swiper-wrapper">
<!-- slide -->
<div class="swiper-slide">
<!-- testimonial -->
<div class="art-a art-testimonial">
<!-- testimonial body -->
<div class="testimonial-body">
<!-- photo -->
<img class="art-testimonial-face" src="img/testimonials/face-1.jpg" alt="face">
<!-- name -->
<h5>Andrew</h5>
<div class="art-el-suptitle mb-15">Client</div>
<!-- text -->
<div class="mb-15">Working with Artur has been a pleasure. Better yet - I alerted them
of a minor issue before going to sleep. The issue was fixed the next morning. I
couldn't ask for better support. Thank you Artur!
This is easily a 5 star freelancer.</div>
</div>
<!-- testimonial body end -->
<!-- testimonial footer -->
<div class="art-testimonial-footer">
<div class="art-left-side">
<!-- star rate -->
<ul class="art-star-rate">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
</ul>
<!-- star rate end -->
</div>
<div class="art-right-side">
</div>
</div>
<!-- testimonial footer end -->
</div>
<!-- testimonial end -->
</div>
<!-- slide end -->
<!-- slide -->
<div class="swiper-slide">
<!-- testimonial -->
<div class="art-a art-testimonial">
<!-- testimonial body -->
<div class="testimonial-body">
<!-- photo -->
<img class="art-testimonial-face" src="img/testimonials/face-2.jpg" alt="face">
<!-- name -->
<h5>Mora</h5>
<div class="art-el-suptitle mb-15">Client</div>
<!-- text -->
<div class="mb-15">Working with Artur has been a pleasure. Better yet - I alerted them
of a minor issue before going to sleep. The issue was fixed the next morning. I
couldn't ask for better support. Thank you Artur!
This is easily a 5 star freelancer.</div>
</div>
<!-- testimonial body end -->
<!-- testimonial footer -->
<div class="art-testimonial-footer">
<div class="art-left-side">
<!-- star rate -->
<ul class="art-star-rate">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li class="art-empty-item"><i class="fas fa-star"></i></li>
</ul>
<!-- star rate end -->
</div>
<div class="art-right-side">
</div>
</div>
<!-- testimonial footer end -->
</div>
<!-- testimonial end -->
</div>
<!-- slide end -->
<!-- slide -->
<div class="swiper-slide">
<!-- testimonial -->
<div class="art-a art-testimonial">
<!-- testimonial body -->
<div class="testimonial-body">
<!-- photo -->
<img class="art-testimonial-face" src="img/testimonials/face-3.jpg" alt="face">
<!-- name -->
<h5>Sera</h5>
<div class="art-el-suptitle mb-15">Client</div>
<!-- text -->
<div class="mb-15">Working with Artur has been a pleasure. Better yet - I alerted them
of a minor issue before going to sleep. The issue was fixed the next morning. I
couldn't ask for better support. Thank you Artur!
This is easily a 5 star freelancer.</div>
</div>
<!-- testimonial body end -->
<!-- testimonial footer -->
<div class="art-testimonial-footer">
<div class="art-left-side">
<!-- star rate -->
<ul class="art-star-rate">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
</ul>
<!-- star rate end -->
</div>
<div class="art-right-side">
</div>
</div>
<!-- testimonial footer end -->
</div>
<!-- testimonial end -->
</div>
<!-- slide end -->
<!-- slide -->
<div class="swiper-slide">
<!-- testimonial -->
<div class="art-a art-testimonial">
<!-- testimonial body -->
<div class="testimonial-body">
<!-- photo -->
<img class="art-testimonial-face" src="img/testimonials/face-4.jpg" alt="face">
<!-- name -->
<h5>Pagi</h5>
<div class="art-el-suptitle mb-15">Client</div>
<!-- text -->
<div class="mb-15">Working with Artur has been a pleasure. Better yet - I alerted them
of a minor issue before going to sleep. The issue was fixed the next morning. I
couldn't ask for better support. Thank you Artur!
This is easily a 5 star freelancer.</div>
</div>
<!-- testimonial body end -->
<!-- testimonial footer -->
<div class="art-testimonial-footer">
<div class="art-left-side">
<!-- star rate -->
<ul class="art-star-rate">
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
<li><i class="fas fa-star"></i></li>
</ul>
<!-- star rate end -->
</div>
<div class="art-right-side">
</div>
</div>
<!-- testimonial footer end -->
</div>
<!-- testimonial end -->
</div>
<!-- slide end -->
</div>
<!-- slider wrapper end -->
</div>
<!-- slider container end -->
</div>
<!-- col end -->
<!-- col -->
<div class="col-lg-12">
<!-- slider navigation -->
<div class="art-slider-navigation">
<!-- left side -->
<div class="art-sn-left">
<!-- slider pagination -->
<div class="swiper-pagination"></div>
</div>
<!-- left side end -->
<!-- right side -->
<div class="art-sn-right">
<!-- slider navigation -->
<div class="art-slider-nav-frame">
<!-- prev -->
<div class="art-slider-nav art-testi-swiper-prev"><i class="fas fa-chevron-left"></i></div>
<!-- next -->
<div class="art-slider-nav art-testi-swiper-next"><i class="fas fa-chevron-right"></i></div>
</div>
<!-- slider navigation -->
</div>
<!-- right side end -->