-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1222 lines (1179 loc) · 44.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Metadata -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="My name is Mohammed Bakkali Freelance web developer offering professional web application development services, including responsive design, e-commerce solutions, and SEO optimization." />
<meta name="keywords" content="Web Development, Freelance Developer, SEO, Responsive Design, E-commerce" />
<meta name="author" content="Mohammed Bakkali" />
<!-- Open Graph Tags -->
<meta property="og:url" content="https://mohammed-bakkali.netlify.app/" />
<meta property="og:title" content="Portfolio - Mohammed Bakkali" />
<meta property="og:description" content="Freelance web developer offering professional web development services, including responsive design, e-commerce solutions, and SEO optimization." />
<meta property="og:image" content="path/to/your/image.jpg" />
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Portfolio - Mohammed Bakkali" />
<meta name="twitter:description" content="My name is Mohammed Bakkali Freelance web developer offering professional web development services, including responsive design, e-commerce solutions, and SEO optimization." />
<meta name="twitter:image" content="https://mohammed-bakkali.netlify.app/images/1689202771955.jpg" />
<title>Portfolio - Mohammed Bakkali</title>
<!-- CSS Stylesheets -->
<link rel="stylesheet" href="./CSS/master.css" />
<!-- Font Awesome Library from CDN for icons -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'" />
<noscript><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" /></noscript>
<!-- Google Fonts for custom fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900&display=swap" as="style" onload="this.onload=null;this.rel='stylesheet'" />
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900&display=swap" /></noscript>
<!-- ALERTIFY JS -->
<!-- JavaScript -->
<script defer src="https://cdn.jsdelivr.net/npm/alertifyjs@1.13.1/build/alertify.min.js"></script>
<!-- CSS -->
<link rel="preload" href="https://cdn.jsdelivr.net/npm/alertifyjs@1.13.1/build/css/alertify.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'" />
<noscript><link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/alertifyjs@1.13.1/build/css/alertify.min.css" /></noscript>
<!-- Favicon -->
<link rel="shortcut icon" href="path/to/favicon.ico" type="image/x-icon" />
<!-- JavaScript Libraries -->
<!-- Particles.js Library for particle effects -->
<script defer src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<!-- Stats.js Library for performance monitoring -->
<script defer src="https://threejs.org/examples/js/libs/stats.min.js"></script>
<!-- EmailJS Library for sending emails -->
<script defer type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
<script defer type="text/javascript">
(function () {
emailjs.init({
publicKey: "PxT3bopGK67Wcy0Ha",
});
})();
</script>
<!-- Structured Data for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Mohammed Bakkali",
"jobTitle": "Freelance Web Developer",
"url": "https://mohammed-bakkali.netlify.app/",
"sameAs": [
"https://www.linkedin.com/in/mohammed-bakkali-4821a123a/",
"https://github.com/mohammed-bakkali",
"https://twitter.com/Mohamme52469572"
],
"alumniOf": "Solicode",
"worksFor": {
"@type": "Organization",
"name": "Freelance"
}
}
</script>
</head>
<body>
<!-- Icon WhatsApp button -->
<a
href="https://api.whatsapp.com/send?phone=++212722923357&text=Hello%20from%20your%20website"
class="whatsapp-button"
target="_blank"
>
<i class="fa-brands fa-whatsapp"></i>
</a>
<!-- ENd -->
<!-- Start Scroll Top -->
<span class="up">
<i class="fa-solid fa-circle-up"></i>
</span>
<!-- End Scroll top -->
<!-- Start Settinges Box -->
<div class="settings-box">
<div class="toggle-settings">
<i class="fa fa-gear fa-spin"></i>
</div>
<div class="settings-container">
<div class="option-box">
<h4>Colors</h4>
<ul class="colors-list">
<li class="active" data-color="#1cd438"></li>
<li data-color="#E91E63"></li>
<li data-color="#009688"></li>
<li data-color="#03A9F4"></li>
<li data-color="#4CAF50"></li>
</ul>
</div>
</div>
</div>
<!-- End Setting Box -->
<!-- ========== Start Header ========== -->
<div class="header container" id="head">
<div class="container">
<!-- Logo and site name -->
<a href="#Home" class="logo"><img style="width: 100px;" src="./icons/MED.png" alt="Logo"></a>
<!-- Hamburger icon for the toggle menu -->
<div class="icon menu-btn">
<i class="fas fa-bars"></i>
</div>
<!-- Navigation links -->
<ul class="main-nav">
<div class="icon cancel-btn">
<i class="fas fa-times"></i>
</div>
<!-- List items for navigation links -->
<li><a href="#Home" class="active">Home</a></li>
<li><a href="#About Me">About Me</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#Projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#bloge">Blog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
<!-- ========== End Header ========== -->
<!-- ========== Start Landing ========== -->
<div class="landing">
<div class="container" id="Home">
<div class="text">
<h4>Hello!</h4>
<h1 class="">I' M <span>Mohammed</span><br />Bk<span>kali</span></h1>
<h3>Web Developer | Freelancer</h3>
<div class="contact-icons">
<a
target="_blank"
href="https://www.linkedin.com/in/mohammed-bakkali-4821a123a/"
>
<i class="fa-brands fa-linkedin"></i>
</a>
<a
target="_blank"
href="https://github.com/mohammed-bakkali"
>
<i class="fa-brands fa-github"></i>
</a>
<a
target="_blank"
href="https://twitter.com/Mohamme52469572"
>
<i class="fa-brands fa-twitter"></i>
</a>
<a
target="_blank"
href="https://www.instagram.com/mohammed_bk45/"
>
<i class="fa-brands fa-instagram"></i>
</a>
<a
target="_blank"
href="https://www.upwork.com/freelancers/~01ac9630508b53f681?s=1110580755057594368"
>
<i class="fab fa-upwork"></i>
</a>
<a
target="_blank"
href="https://www.fiverr.com/mohammedbakkli?source=gig_page"
>
<i class="fab fa-fiverr"></i>
</a>
<!-- <a
target="_blank"
href="https://www.fiverr.com/mohammedbakkli?up_rollout=true"
>
<img src="https://cdn.worldvectorlogo.com/logos/fiverr-1.svg" alt="Fiverr" ">
</a> -->
</div>
<a href="#contact" class="btn hire_me">Hire me !</a>
<a download target="_blank" href="./Mohammed_Bakkali_cv.pdf" class="btn download">
Download cv
<i class="fa-solid fa-cloud-arrow-down"></i>
</a>
</div>
</div>
<a href="#About Me" class="go-down">
<i class="fas fa-angle-double-down fa-2x"></i>
</a>
</div>
<!-- ========== End Landing ========== -->
<!-- ========== Start Stats ========== -->
<div class="stats">
<div class="container" >
<div class="box" >
<i class="far fa-user fa-2x fa-fw"></i>
<span class="number" data-goal="150">150</span>
<span class="text">Clients</span>
</div>
<div class="box" >
<i class="fas fa-code fa-2x fa-fw"></i>
<span class="number" data-goal="135">135</span>
<span class="text">Projects</span>
</div>
<div class="box" >
<i class="fas fa-globe-asia fa-2x fa-fw"></i>
<span class="number" data-goal="50">50</span>
<span class="text">Countries</span>
</div>
<div class="box">
<i class="far fa-money-bill-alt fa-2x fa-fw"></i>
<span class="number" data-goal="500">500</span>
<span class="text">Money</span>
</div>
</div>
</div>
<!-- ========== End Stats ========== -->
<!-- ========== Start About ========== -->
<div class="about" id="About Me">
<div class="container">
<div class="main-heading">
<h2 class="main-title">About me</h2>
<p>
Develop your digital presence through development services designed specifically for you. Contact me to bring your ideas to life.
</p>
</div>
<div class="about-container">
<div class="image">
<img class="about__img" src="images/1689202771955.jpg" />
</div>
<div class="content about__content">
<h1>About me</h1>
<h4>Hi, Im Here To Help Your Next Project</h4>
<p>
My name is <span>Mohammed.Bakkali </span> from Morocco, a website programmer passionate about information security.
I always strive to develop safe and reliable applications and websites.
I work as a freelancer to provide innovative and secure software solutions to my clients.
My goal is to provide high-quality technical services that protect data and ensure privacy.
</p>
<div class="about-gri">
<div class="about-in">
<h5>1. Problem Solving</h5>
</div>
<div class="about-in">
<h5>2. Creative Ideas</h5>
</div>
<div class="about-in">
<h5>3. Search a lot</h5>
</div>
<div class="about-in">
<h5>4. High Quality</h5>
</div>
</div>
<a hrf="#" class="btn hire_me">Hire me</a>
</div>
</div>
</div>
</div>
<!-- ========== End About ========== -->
<!-- ========== Start Services ========== -->
<div class="services" id="services">
<div class="container">
<div class="main-heading">
<h2 class="main-title">services</h2>
<p>
Elevate your digital presence with our custom development services.
Whether you need a mobile app, web development, desktop app, or
Security solutions, we've got you covered. Contact me to convert your ideas Into reality.
</p>
</div>
<div class="services-container category__box">
<div class="box mobile">
<i class="fa-solid fa-mobile-screen"></i>
<h6>Mobil Apps</h6>
<p>
I can develop professional mobile applications according to the requirements of the client or the company.
</p>
</div>
<div class="box web">
<i class="fa-solid fa-code"></i>
<h6>Web Development</h6>
<p>
I can professionally develop and program websites according to the requirements of the client or the company.
</p>
</div>
<div class="box desctop">
<i class="fa-solid fa-desktop"></i>
<h6>Desktop Apps</h6>
<p>
I can develop professional desktop applications according to the requirements of the client or the company.
</p>
</p>
</div>
<div class="box desctop">
<i class="fa-solid fa-bug"></i>
<h6>Security</h6>
<p>
I can develop professional security applications according to the requirements of the client or the company.
</p>
</div>
</div>
</div>
</div>
<!-- ========== End Services ========== -->
<!-- ========== Start Skills ========== -->
<div class="skills" id="skills">
<div class="container">
<div class="main-heading">
<h2 class="main-title">Skills</h2>
<p>
Highlight your projects and achieve your goals with my versatile
technical skills. Contact me to discuss your next exciting project !
</p>
</div>
<div class="skills-container">
<div class="box html category__box">
<img src="images/icons8-html-92.png" alt="" />
<h4>HTML</h4>
</div>
<div class="box css category__box">
<img src="icons/icons8-css-92.png" alt="" />
<h4>CSS</h4>
</div>
<div class="box js category__box">
<img src="icons/icons8-js-92.png" alt="" />
<h4>JAVASCRIPT</h4>
</div>
<div class="box sass category__box">
<img src="icons/icons8-sass-92.png" alt="" />
<h4>SASS</h4>
</div>
<div class="box Tailwind category__box">
<img src="images/Tailwind.png" alt="" />
<h4>TAILWIND</h4>
</div>
<div class="box bootstrap category__box">
<img src="icons/icons8-bootstrap-92.png" alt="" />
<h4>BOOTSTRAP</h4>
</div>
<div class="box react category__box">
<img src="icons/icons8-réagir-92.png" alt="" />
<h4>REACT</h4>
</div>
<div class="box NEXT category__box">
<img src="images/icons8-nextjs-92.png" alt="" />
<h4>NEXT JS</h4>
</div>
<div class="box api category__box">
<img src="images/icons8-rest-api-92.png" alt="" />
<h4>API</h4>
</div>
<div class="box git category__box">
<img src="icons/icons8-git-92.png" alt="" />
<h4>GIT</h4>
</div>
<!-- <div class="box php category__box">
<img src="icons/icons8-php-92.png" alt="" />
<h4>PHP</h4>
</div> -->
<div class="box node category__box">
<img src="icons/node.svg" alt="" />
<h4>Node Js</h4>
</div>
<!-- <div class="box MongoDB category__box">
<img src="icons/mongodb.svg" alt="" />
<h4>MongoDB</h4>
</div> -->
<div class="box exp category__box">
<img src="icons/express.svg" alt="" />
<h4>ExpressJS</h4>
</div>
<div class="box Virtualbox category__box">
<img src="icons/Virtualbox.png" alt="" />
<h4>Virtualbox</h4>
</div>
<!-- <div class="box Docker category__box">
<img src="icons/docker.png" alt="" />
<h4>Docker</h4>
</div> -->
<div class="box linux
category__box">
<img src="icons/icons8-linux-92.png" alt="" />
<h4>LINUX</h4>
</div>
<div class="box VS category__box">
<img src="icons/Visual_Studio.png" alt="" />
<h4>Visual Studio</h4>
</div>
</div>
</div>
</div>
<!-- ========== End Skills ========== -->
<!-- ========== Start Certificates ========== -->
<div class="certificates" id="certificates">
<div class="container">
<div class="main-heading">
<h2 class="main-title">Certificates</h2>
<p>
Here are some of the certifications I've earned over the years. These reflect my commitment to continuous learning and staying updated with the latest industry standards.
</p>
</div>
<div class="certificates-container">
<div class="card">
<img src="./images/certificates//OFPPT - Certificat en développement web_01.jpg" alt="React JS Certificate">
<h3>Web Development</h3>
<h5>Issued by OFPPT</h5>
<p>Date: July 2023</p>
<!-- <div class="live">
<a target="_blank" href="https://coursera.org/certificate/xyz"><i class="fa-solid fa-file-certificate"></i>View Certificate</a>
</div> -->
</div>
<div class="card">
<img src="./images/certificates//SIMPLON_page-0001.jpg" alt="Web Development Certificate">
<h3>Web Development</h3>
<h5>Issued by SIMPLON</h5>
<p>Date: June 2023</p>
<!-- <div class="live">
<a target="_blank" href="https://udemy.com/certificate/abc"><i class="fa-solid fa-file-certificate"></i>View Certificate</a>
</div> -->
</div>
<div class="card">
<img src="./images/certificates//Udemy-Recta.js.png" alt="React JS Certificate">
<h3>React JS</h3>
<h5>Issued by Udemy</h5>
<p>Date: May 2024</p>
<!-- <div class="live">
<a target="_blank" href="https://freecodecamp.org/certificate/def"><i class="fa-solid fa-file-certificate"></i>View Certificate</a>
</div> -->
</div>
</div>
</div>
</div>
<!-- ========== End Certificates ========== -->
<!-- ========== Start My Projects ========== -->
<div class="projects" id="Projects">
<div class="container">
<div class="main-heading">
<h2 class="main-title">Projects</h2>
<p>
Below are some of the projects I have completed that you can browse through and take a look at the professionalism I provide.
</p>
</div>
<div class="filter_buttons">
<button class="active" data-name="all">Show All</button>
<button data-name="HTML">HTML & CSS</button>
<button data-name="BOOSTRAP">Tailwind and BOOSTRAP</button>
<button data-name="JAVASCRIPT">JAVASCRIPT</button>
<button data-name="REACT">REACT JS</button>
<button data-name="Mern stack">Mern stack</button>
</div>
<div class="projects-container filterable_cards">
<div class="card" data-name="REACT">
<img src="images/Work17.png" alt="" />
<h3>E-commerce Website </h3>
<h5>2024</h5>
<p>
Fully functional e-commerce platform using React.js,
</p>
<ul>
<li>#React Js</li>
<li>#Redux</li>
<li>#Api</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/E-commerce-App"
><i class="fa-brands fa-github"></i>Code</a
>
<a target="_blank" href=""
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="HTML">
<img src="images/work1.png" alt="" />
<h3>portflio</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/page-home-Company"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/page-home-Company/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="HTML">
<img src="images/work7.png" alt="" />
<h3>Templeate</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
</ul>
<div class="live">
<a
href="https://github.com/mohammed-bakkali/Template_Two-HTML-and-CSS"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/Template_Two-HTML-and-CSS/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="HTML">
<img src="images/work8.png" alt="" />
<h3>portflio</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/-Template_One-HTML-and-CSS"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/-Dachbord_Two_HTML-CSS-/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="HTML">
<img src="images/Work3.png" alt="" />
<h3>Dashboard</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/-Dachbord_Two_HTML-CSS-"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/-Dachbord_Two_HTML-CSS-/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="HTML">
<img src="images/work10.png" alt="" />
<h3>Dashboard</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Dachbord_HTML-CSS"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/Dachbord_HTML-CSS/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="HTML">
<img src="images/work11.png" alt="" />
<h3>Youtube</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Youtube"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/Youtube/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="BOOSTRAP">
<img src="images/Bondi.png" alt="" />
<h3>Bondie</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
<li>Boostrap</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Boostrap_Design-01"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/Boostrap_Design-01/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="BOOSTRAP">
<img src="images/Tailwind-CSS-2023.webp" alt="" />
<h3>Burger Template</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
<li># Tailwind css</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Tailwind_Design-01"
><i class="fa-brands fa-github"></i>Code</a
>
<a target="_blank" href="https://burgerwebsit09.netlify.app/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="HTML">
<img src="images/work4.png" alt="" />
<h3>portflio</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Template_Three-_HTML-_CSS-_JS"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/Template_Three-_HTML-_CSS-_JS/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="JAVASCRIPT">
<img src="images/system crud with javascript.png" alt="">
<h3>system crud with javascrip</h3>
<h5>2024</h5>
<p>system crud with javascrip.</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
<li>#JAVASCRIPT</li>
</ul>
<!-- -->
<div class="live">
<a target="_blank" href="https://github.com/mohammed-bakkali/system-crud-with-javascript"><i class="fa-brands fa-github"></i>Code</a>
<a target="_blank" href="https://mohammed-bakkali.github.io/system-crud-with-javascript/"><i class="fa-solid fa-display"></i>LiveCode</a>
</div>
</div>
<div class="card" data-name="JAVASCRIPT">
<img src="images/work9.png" alt="" />
<h3>portflio</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
<li>#JAVASCRIPT</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Portflio"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/Template_Three-_HTML-_CSS-_JS/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="JAVASCRIPT">
<img src="images/Work12.png" alt="" />
<h3>Game X-O</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
<li>#JAVASCRIPT</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/x-o-Javascript-main"
><i class="fa-brands fa-github"></i>Code</a
>
<a target="_blank" href="https://x-o-game-js0.netlify.app/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="JAVASCRIPT">
<img src="images/work13.png" alt="" />
<h3>Image Slider</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
<li>#Vanila JAVASCRIPT</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Image-Slider"
><i class="fa-brands fa-github"></i>Code</a
>
<a
target="_blank"
href="https://mohammed-bakkali.github.io/Image-Slider/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="JAVASCRIPT">
<img src="images/Work14.png" alt="" />
<h3>Filter image Api</h3>
<h5>2024</h5>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Debitis,
optio.
</p>
<ul>
<li>#HTML</li>
<li>#CSS</li>
<li>#JS | #API</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Image-Slider"
><i class="fa-brands fa-github"></i>Code</a
>
<a target="_blank" href="https://filters-api.netlify.app/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="REACT">
<img src="images/Work15.png" alt="" />
<h3>To Do List</h3>
<h5>2024</h5>
<p>
To-Do List witch Recat js
</p>
<ul>
<li>#React Js</li>
<li>#LoacalStorage</li>
<li>#Material ui</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Todo-List-Recat-js"
><i class="fa-brands fa-github"></i>Code</a
>
<a target="_blank" href="https://to-do-listes.netlify.app/"
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="Mern stack">
<img src="images/Work16.png" alt="" />
<h3>CRUD</h3>
<h5>2024</h5>
<p>
CRUD witch Mern stack
</p>
<ul>
<li>#Node js</li>
<li>#Express JS</li>
<li>#Mongo DB</li>
</ul>
<div class="live">
<a
target="_blank"
href="https://github.com/mohammed-bakkali/Mern-stack"
><i class="fa-brands fa-github"></i>Code</a
>
<a target="_blank" href=""
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
<div class="card" data-name="Mern stack">
<img src="images/Work16.png" alt="" />
<h3>Blog App</h3>
<h5>2024</h5>
<p>
Blog App witch Mern stack
</p>
<ul>
<li>#Node js</li>
<li>#Express JS</li>
<li>#Mongo DB</li>
</ul>
<div class="live">
<a
target="_blank"
href=""
><i class="fa-brands fa-github"></i>Code</a
>
<a target="_blank" href=""
><i class="fa-solid fa-display"></i>LiveCode</a
>
</div>
</div>
</div>
</div>
</div>
<!-- ========== End My Projects ========== -->
<!-- ========== Start Reviews ========== -->
<div class="reviews">
<div class="container">
<div class="main-heading">
<h2 class="main-title">Reviews</h2>
<p class="paragraph">
Your projects are in good hands. Join the list of satisfied clients by contacting me for your next development challenge
</p>
</div>
<div class="wrapper">
<i id="left" class="fas fa-angle-left change-background fa-2x"></i>
<div class="reviews-container customer__review carousel">
<div class="box">
<p class="paragraph">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Similique culpa ut amet voluptas asperiores alias sed
consequatur.
</p>
<div class="box-footer">
<img src="imgs/avatar-01.png" alt="" />
<div class="info">
<p>Adam abrad</p>
<span>Lawyerr</span>
</div>
<i
class="fa-solid fa-quote-right text-4xl text-secondaryColor ml-auto"
></i>
</div>
</div>
<div class="box">
<p class="paragraph">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Similique culpa ut amet voluptas asperiores alias sed
consequatur.
</p>
<div class="box-footer">
<img src="imgs/avatar-02.png" alt="" />
<div class="info">
<p>Jack</p>
<span class="title"> Devloper</span>
</div>
<i
class="fa-solid fa-quote-right text-4xl text-secondaryColor ml-auto"
></i>
</div>
</div>
<div class="box">
<p class="paragraph">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Similique culpa ut amet voluptas asperiores alias sed
consequatur.
</p>
<div class="box-footer">
<img src="imgs/avatar-03.png" alt="" />
<div class="info">
<p>Yuliya</p>
<span>Designer</span>
</div>
<i
class="fa-solid fa-quote-right text-4xl text-secondaryColor ml-auto"
></i>
</div>
</div>
<div class="box">
<p class="paragraph">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Similique culpa ut amet voluptas asperiores alias sed
consequatur.
</p>
<div class="box-footer">
<img src="imgs/avatar-04.png" alt="" />