-
Notifications
You must be signed in to change notification settings - Fork 1
/
portfolio-details.html
2622 lines (2049 loc) · 101 KB
/
portfolio-details.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title> Previous Projects</title>
<meta content="" name="descriptison">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.webp" rel="icon">
<link href="assets/img/apple-touch-icon.webp" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<script src="https://code.iconify.design/iconify-icon/1.0.0-beta.3/iconify-icon.min.js"></script>
<!-- =======================================================
* Template Name: iPortfolio - v1.2.1
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Mobile nav toggle button ======= -->
<button type="button" class="mobile-nav-toggle d-xl-none"><i class="icofont-navigation-menu"></i></button>
<!-- ======= Header ======= -->
<header id="header">
<div class="d-flex flex-column">
<div class="profile">
<img src="assets/img/prof-pic.webp" alt="" class="img-fluid rounded-circle">
<h1 class="text-light"><a href="index.html">Danish Rangaiz</a></h1>
<div class="social-links mt-3 text-center">
<a href="https://www.upwork.com/freelancers/~0131cc70a94b15c350" class="upwork" target="_blank"><iconify-icon icon="simple-icons:upwork"></iconify-icon></a>
<a href="https://fiverr.com/danishrangaiz" class="fiverr" target="_blank"> <iconify-icon inline icon="jam:fiverr"></iconify-icon></a>
<a href="https://www.linkedin.com/in/danishrangaiz/" class="linkedin" target="_blank"><i class="bx bxl-linkedin"></i></a>
<!-- <a href="https://skype.com/idanishrangaiz/" class="skype" target="_blank"><i class="bx bxl-skype"></i></a> -->
<!-- <a href="https://portfolio.infomisttube.com" class="facebook" target="_blank"><i class="bx bxl-wordpress"></i></a> -->
<a href="https://wa.me/923425332212" class="whatsapp" target="_blank"><i class='bx bxl-whatsapp'></i></a>
</div>
</div>
<nav class="nav-menu">
<ul>
<li class="active"><a href="index.html"><i class="bx bx-home"></i> <span>Home</span></a></li>
<li><a href="#about"><i class="bx bx-user"></i> <span>About</span></a></li>
<li><a href="#resume"><i class="bx bx-file-blank"></i> <span>Resume</span></a></li>
<li><a href="#portfolio"><i class="bx bx-book-content"></i> Portfolio</a></li>
<li><a href="#achievements"><i class="bx bx-book-content"></i> Achievements</a></li>
<li><a href="#contact"><i class="bx bx-envelope"></i> Contact</a></li>
</ul>
</nav><!-- .nav-menu -->
<button type="button" class="mobile-nav-toggle d-xl-none"><i class="icofont-navigation-menu"></i></button>
</div>
</header><!-- End Header -->
<main id="main">
<!-- ======= Breadcrumbs ======= -->
<section id="breadcrumbs" class="breadcrumbs">
<div class="container">
<div class="d-flex justify-content-between align-items-center">
<h2><b>Portfolio Details</b></h2>
<ol>
<li><a href="index.html">Home</a></li>
<li>Portfolio Details</li>
</ol>
</div>
</div>
</section><!-- End Breadcrumbs -->
<h2> Website No : 01</h2>
<br>
<br>
<!-- ======= Portfolio 01 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/barugzai/barugzai1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/barugzai/barugzai2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/barugzai/barugzai3.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/barugzai/barugzai4.webp" class="img-fluid" alt="">
</div>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Custom Website</li>
<li><strong>Client</strong>: Company Based </li>
<li><strong>Requirements</strong>: Designed From Scratch</li>
<li><strong>Project URL</strong>: <a href="https://barugzai.com/" rel="nofollow external noopener noreferrer" target="_blank">Barugzai</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Car's Selling Website </h2>
<p>
It's an HTML based website which converted in to wordpress in Twenty-Thirteen theme from Scratch. It was first designed in HTML,CSS through "ACF" and then converted it to WordPress Theme.
</p>
</div>
</div>
</section>
<!-- End Portfolio 01 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 02</h2>
<br>
<br>
<!-- ======= Portfolio 02 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/theradynamic/theradynamic1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/theradynamic/theradynamic2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/theradynamic/theradynamic3.webp" class="img-fluid" alt="">
</div>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Custom Website </li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirements</strong>: Designed From Scratch & Changes</li>
<li><strong>Project URL</strong>: <a href="https://www.theradynamics.com/" rel="nofollow external noopener noreferrer" target="_blank">Theradynamic</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>Its an Health and Spa Website for Online Booking and Registration.</h2>
<p>
It's an HTML based website which converted in to wordpress, Also some of its Pages Designed in WP-BAKERY. It is deisgned in Advanced Custom Field "ACF", also in WP-BAKERY.
</p>
</div>
</div>
</section>
<!-- End Portfolio 02 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 03</h2>
<br>
<br>
<!-- ======= Portfolio 03 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/remodel/remodel1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/remodel/remodel2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/remodel/remodel3.webp" class="img-fluid" alt="">
</div>
<div class="portfolio-info">
<h3><b>Project information</b></h3>
<ul>
<li><strong>Category</strong>: Elementor</li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirement</strong>: To <b>Clone Website</b> Completely</li>
<li><strong>Project URL</strong>: <a href="https://remodelwithgjk.com/" rel="nofollow external noopener noreferrer" target="_blank">RemodelWithGJK</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an website for Home Reconstructions </h2>
<p>
This website is built on WordPress. We used Elementor Builder for it. THe client's requirement was to CLONE his old website which was made in other CMS.
</p>
</div>
</div>
</section>
<!-- End Portfolio 03 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 04</h2>
<br>
<br>
<!-- ======= Portfolio 04 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/Horror/horror1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Horror/horror2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Horror/horror3.webp" class="img-fluid" alt="">
</div>
<div class="portfolio-info">
<h3><b>Project information</b></h3>
<ul>
<li><strong>Category</strong>: Elementor</li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirement</strong>: Changes and Remodeling of Full Website</li>
<li><strong>Project URL</strong>: <a href="https://horrorconla.com/" rel="nofollow external noopener noreferrer" target="_blank">Horrorconla</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Ticket Booking Website</h2>
<p>
It's an Cenima Ticket website which is build on Elementor. The website structure was totally destoyed & the client wants to remodel it and figure out the bugs where it faces issues.
</p>
</div>
</div>
</section>
<!-- End Portfolio 04 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 05</h2>
<br>
<br>
<!-- ======= Portfolio 05 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/ipburger/ipburger-1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/ipburger/ipburger-3.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/ipburger/ipburger-4.webp" class="img-fluid" alt="">
</div>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Elementor</li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirement</strong>: Figma Designed From Scratch</li>
<li><strong>Project URL</strong>: <a href="https://www.ipburger.com/" rel="nofollow external noopener noreferrer" target="_blank">IP Burger</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Figma Design</h2>
<p>
A Figma Deisgn which was designed from scratch in Elementor. The website is related to the IP's dignosing.
</p>
</div>
</div>
</section>
<!-- End Portfolio 05 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 06</h2>
<br>
<br>
<!-- ======= Portfolio 06 Details Section ======= -->
<!-- <section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel guidemeet-img">
<img src="assets/img/Portfolio-details/guidemeet/guidemeet-1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/guidemeet/guidemeet-2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/guidemeet/guidemeet-3.webp" class="img-fluid" alt="">
</div>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Elementor</li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirement</strong>: Car cab Website from Scratch</li>
<li><strong>Project URL</strong>: <a href="http://guidemeet.it/" rel="nofollow external noopener noreferrer" target="_blank">Guide Meet</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Car Cab website </h2>
<p>
A Car Cab website which was designed in Elementor and ACF. Some of its functionalities work with ACF while the deisgn is from Elementor builder. It's a Italy Booking website for call cab to locate and help in your destination.
</p>
</div>
</div>
</section>End Portfolio 06 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 07</h2>
<br>
<br>
<!-- ======= Portfolio 07 Details Section ======= -->
<!-- <section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/CleaningComp/cleaning-1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/CleaningComp/cleaning-2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/CleaningComp/cleaning-3.webp" class="img-fluid" alt="">
</div>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Avada</li>
<li><strong>Client</strong>: Freelancer</li>
<li><strong>Requirement</strong>:Home Repairing Booking</li>
<li><strong>Project URL</strong>: <a href="https://cleaningcompany.ae" rel="nofollow external noopener noreferrer" target="_blank">Cleaning Company</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Home Repairing Website</h2>
<p>
A website which is built from scratch for Home Repairing things. Here's you can book for the Repairer who'll fix the things of your home. The website used Avada theme.
</p>
</div>
</div>
</section> -->
<!-- End Portfolio 1 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 08</h2>
<br>
<br>
<!-- ======= Portfolio 08 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/Elywelbeing/elywelbeing-1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Elywelbeing/elywelbeing2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Elywelbeing/elywelbeing3.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Elywelbeing/elywelbeing4.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Elywelbeing/elywelbeing5.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Elywelbeing/elywelbeing6.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Custom Based & Divi </li>
<li><strong>Client</strong>: Fiverr</li>
<li><strong>Requirement</strong>: Health Woocommerce Website & Subdomain Linked</li>
<li><strong>Project URL</strong>: <a href="http://elywellbeing.co.uk/" rel="nofollow external noopener noreferrer" target="_blank">Elywellbeing</a></li>
<li><strong>Project URL</strong>: <a href="https://elywellbeing.co.uk/shop" rel="nofollow external noopener noreferrer" target="_blank">Elywellbeing Shop</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Health website which attached with its Woocommerce subdomain website</h2>
<p>
This website is custom built website in HTML,CSS,PHP which is related Health, NLP etc Also the client wanted to Make its Shop where they can sell there Products and that shop must be linked and designed in WordPress. So the Shop is build in Divi theme, and linked it to main website Elywellbeing.
</p>
</div>
</div>
</section>
<!-- End Portfolio 08 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 09</h2>
<br>
<br>
<!-- ======= Portfolio 09 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/rooteddm/rooteddm-1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/rooteddm/rooteddm2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/rooteddm/rooteddm3.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Elementor</li>
<li><strong>Client</strong>: Fiverr</li>
<li><strong>Requirement</strong>: To Clone Website Completely</li>
<li><strong>Project URL</strong>: <a href="https://rooteddm.com" rel="nofollow external noopener noreferrer" target="_blank">RootedDm</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's a Clone website design</h2>
<p>
It's an Ecommerce based wesbite in which the client gave reference website and to clone that website completely. Elementor builder is used for this website.
</p>
</div>
</div>
</section>
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 10</h2>
<br>
<br>
<!-- ======= Portfolio 10 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/fermoy/fermoy-1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/fermoy/fermoy2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/fermoy/fermoy3.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>:Beaver</li>
<li><strong>Client</strong>: Freelancer</li>
<li><strong>Requirement</strong>:Donation Website for Religious </li>
<li><strong>Project URL</strong>: <a href="https://www.fermoyparish.ie/" rel="nofollow external noopener noreferrer" target="_blank">Fermoy Parish</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's Cruch Donation Website</h2>
<p>
The website is belong to Relegious in Ireland, & Donation for Cruch, Although here is everything about Cristians relegious. The website is designed on Beaver Builder.
</p>
</div>
</div>
</section>
<!-- End Portfolio 10 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 11</h2>
<br>
<br>
<!-- ======= Portfolio 11 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/react-port/react-portfolio-1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/react-port/react-portfolio2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/react-port/react-portfolio3.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/react-port/react-portfolio4.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Others ( React Portfolio )</li>
<li><strong>Client</strong>: Fiverr</li>
<li><strong>Requirement</strong>:Portfolio Website </li>
<li><strong>Project URL</strong>: <a href="https://react-portfolio-gules-eight.vercel.app/" rel="nofollow external noopener noreferrer" target="_blank">Portfolio Website</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Portfolio Website</h2>
<p>
This is Portfolio website which is designed in REACT language. It's an github project, which is already there at <a href="https://idanishrangaiz.gihub.io/">idanishrangaiz</a> Porfile
</p>
</div>
</div>
</section>
<!-- End Portfolio 11 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 12</h2>
<br>
<br>
<!-- ======= Portfolio 12 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/Radiant-world/radiantworld1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Radiant-world/radiantworld2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Radiant-world/radiantworld3.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Avada</li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirement</strong>: Changes & Add Extra Features </li>
<li><strong>Project URL</strong>: <a href="https://radiant-world.com/" rel="nofollow external noopener noreferrer" target="_blank">Radiant World</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Private Company Website</h2>
<p>
It's an company based website which is related to office and home related things. Also, the client wanted to give a touch of blogs which should not be accessible for traffic's without their password. The website is built on Avada Builder
</p>
</div>
</div>
</section>
<!-- End Portfolio 13 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 14</h2>
<br>
<br>
<!-- ======= Portfolio 14 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/hanapearl/hanapearl1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/hanapearl/hanapearl2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/hanapearl/hanapearl3.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: WP Bakery</li>
<li><strong>Client</strong>: Upwork</li>
<li><strong>Requirement</strong>:Woo-Commerce Shop for Scratch </li>
<li><strong>Project URL</strong>: <a href="http://hanaperintl.com/" rel="nofollow external noopener noreferrer" target="_blank">Hanaper Intl</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Ecommerce Store</h2>
<p>
It's an Ecommerce store in which the client wants to configure shop/store for his Martial Arts Products, There are thousand of products in this store which are related to Sports. The website is built on WP Bakery.
</p>
</div>
</div>
</section>
<!-- End Portfolio 14 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 15</h2>
<br>
<br>
<!-- ======= Portfolio 15 Details Section ======= -->
<!-- <section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/therapycenter/therapycenter1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/therapycenter/therapycenter2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/therapycenter/therapycenter3.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Elementor</li>
<li><strong>Client</strong>: Upwork</li>
<li><strong>Requirement</strong>:Therapy Center Online Booking & Registration </li>
<li><strong>Project URL</strong>: <a href="https://sagetherapycentre.co.uk/" rel="nofollow external noopener noreferrer" target="_blank">Sage Therapy Centre</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Therapy Booking website</h2>
<p>
A website that is related to booking & registration for health and therapy in United Kingdom. It's and platform for therapist & Doctors to register and claim their clients or Patients from this platform. The website is built on Elementor Builder.
</p>
</div>
</div>
</section>
-->
<!-- End Portfolio 15 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 16</h2>
<br>
<br>
<!-- ======= Portfolio 16 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/Naturulz/naturulz1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Naturulz/naturulz2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Naturulz/naturulz3.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Naturulz/naturulz4.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Naturulz/naturulz5.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Divi</li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirement</strong>: Clone Website in Divi </li>
<li><strong>Project URL</strong>: <a href="https://naturulz.com/" rel="nofollow external noopener noreferrer" target="_blank">Naturulz</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Ointment Store</h2>
<p>
The website built at other CMS and the Client wanted to clone the website in DIVI theme, Also to add some extra features in the website which were custom. The website is built in Divi.
</p>
</div>
</div>
</section>
<!-- End Portfolio 16 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 17</h2>
<br>
<br>
<!-- ======= Portfolio 17 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/Gocloud/gocloud1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Gocloud/gocloud2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Gocloud/gocloud3.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: WP Bakery</li>
<li><strong>Client</strong>: Freelancer</li>
<li><strong>Requirement</strong>: PSD Design to WordPress </li>
<li><strong>Project URL</strong>: <a href="https://www.gocloud.ie/" rel="nofollow external noopener noreferrer" target="_blank">Go Cloud</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Website Services site</h2>
<p>
It was an PSD template which we designed in WP Bakery. It is an Website service provider website.
</p>
</div>
</div>
</section>
<!-- End Portfolio 17 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 18</h2>
<br>
<br>
<!-- ======= Portfolio 18 Details Section ======= -->
<!-- <section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/Essamy/essamy1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Essamy/essamy2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/Essamy/essamy3.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Elementor</li>
<li><strong>Client</strong>: Upwork</li>
<li><strong>Requirement</strong>: PSD Design Website </li>
<li><strong>Project URL</strong>: <a href="https://essamy.com/" rel="nofollow external noopener noreferrer" target="_blank">Essamy</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Logistics Service</h2>
<p>
The website is about logistics things to deal costumer in a good way. They have to quote their own choice price. The website built in Elementor Builder.
</p>
</div>
</div>
</section> -->
<!-- End Portfolio 18 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 19</h2>
<br>
<br>
<!-- ======= Portfolio 19 Details Section ======= -->
<!-- <section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/stylicint/stylicint3.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/stylicint/stylicint1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/stylicint/stylicint2.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: WP Bakery</li>
<li><strong>Client</strong>: Upwork</li>
<li><strong>Requirement</strong>: Ecommerce Shop for Sports</li>
<li><strong>Project URL</strong>: <a href="http://stylicinternational.com/" rel="nofollow external noopener noreferrer" target="_blank">Stylic International</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Ecommerce Store</h2>
<p>
The website is about Sport Shop which built in WP Bakery, It was simple Product based WooCommerce website in which the clients want to sell their own product all over the state.
</p>
</div>
</div>
</section> -->
<!-- End Portfolio 19 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 20</h2>
<br>
<br>
<!-- ======= Portfolio 20 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/carrot/carrot1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/carrot/carrot2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/carrot/carrot3.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/carrot/carrot4.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Others</li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirement</strong>: Real Estate Website in Carrot CMS </li>
<li><strong>Project URL</strong>: <a href="https://www.sellmyhousefastsatx.com/" rel="nofollow external noopener noreferrer" target="_blank">Carrot</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Carrot CMS Website of Real Estate</h2>
<p>
The website built at other CMS named CARROT, that is of Real Estate Builder, in which the client wants to sell the properties, home, Apartments, etc. The Carrot CMS is mostly used for Real Estate Projects, as it has some specific theme related to Real Estate. </p>
</div>
</div>
</section>
<!-- End Portfolio 20 Details Section -->
<hr style="width: 50%; border: 1px solid black;" />
<h2> Website No : 21</h2>
<br>
<br>
<!-- ======= Portfolio 21 Details Section ======= -->
<section id="portfolio-details" class="portfolio-details">
<div class="container">
<div class="portfolio-details-container">
<div class="owl-carousel portfolio-details-carousel">
<img src="assets/img/Portfolio-details/garber/garber1.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/garber/garber2.webp" class="img-fluid" alt="">
<img src="assets/img/Portfolio-details/garber/garber3.webp" class="img-fluid" alt="">
</div>
<br>
<br>
<br>
<br>
<br>
<div class="portfolio-info">
<h3><b>Project Information</b></h3>
<ul>
<li><strong>Category</strong>: Others</li>
<li><strong>Client</strong>: Company Based</li>
<li><strong>Requirement</strong>: Landing Pages for Online Booking </li>
<li><strong>Project URL</strong>: <a href="https://gerbercareers.com/" rel="nofollow external noopener noreferrer" target="_blank">Gerber Careers</a></li>
</ul>
</div>
</div>
<div class="portfolio-description">
<h2>It's an Technical Company Website</h2>
<p>
The website is related to training sessions and to to work technically for consumers, for that they design the website to make book online your technicians and also to train from here. The website built in Genesis Builder.
</p>
</div>
</div>
</section>
<!-- End Portfolio 21 Details Section -->