forked from Fawzy-Moawad/FawzyMoawad-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·1034 lines (923 loc) · 47.7 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>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Fawzy Moawad</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" 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/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header">
<div class="container">
<h1><a href="index.html">
<i class='bx bx-code' style="color: #fff;"></i>Fawzy Moawad<i class='bx bx-code-alt' style="color: #fff;" ></i></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="mr-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a> -->
<h2><span></span>Software Engineer from Vancouver, Canada</h2>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link active" href="#header">Home</a></li>
<li><a class="nav-link" href="#about">About</a></li>
<li><a class="nav-link" href="#resume">Resume</a></li>
<li><a class="nav-link" href="#services">Services</a></li>
<li><a class="nav-link" href="#portfolio">My Works</a></li>
<li><a class="nav-link" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<div class="social-links">
<a href="mailto:info@fawzymoawad.com" class="envelope" target="_blank" rel="noopener" aria-label="Mail"><i class="bi bi-envelope"></i></a>
<a href="https://github.com/Fawzy-Moawad" class="github" target="_blank" rel="noopener" aria-label="GitHub"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/fawzy-moawad/" target="_blank" rel="noopener" aria-label="Linkedin"><i class='bx bxl-linkedin'></i></a>
<a href="./assets/pdf/English.pdf" target="_blank" rel="noopener" aria-label="Resume"><i class='bx bxs-file-pdf'></i></a>
</div>
</div>
</header><!-- End Header -->
<!-- ======= About Section ======= -->
<section id="about" class="about">
<!-- ======= About Me ======= -->
<div class="about-me container">
<div class="section-title">
<h2>About</h2>
</div>
<div class="row d-flex align-items-center justify-content-center">
<div class="col-lg-8 pt-4 pt-lg-0 content" data-aos="fade-left">
<h3>Full-Stack Developer</h3>
<p class="fst-italic">
An enthusiastic Full Stack Developer with a diverse skill set that spans both frontend and backend technologies.
</p>
<div class="row">
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Name:</strong> <span>Fawzy Moawad</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>City:</strong> <span>Vancouver, BC, Canada</span></li>
</ul>
</div>
<div class="col-lg-6">
<ul>
<li><i class="bi bi-chevron-right"></i> <strong>Website:</strong> <span>www.fawzymoawad.com</span></li>
<li><i class="bi bi-chevron-right"></i> <strong>Email:</strong> <span>info@fawzymoawad.com</span></li>
</ul>
</div>
</div>
<p>
I specialize in crafting intuitive and visually appealing user interfaces using the latest technologies.<br>
Proficient in HTML, CSS, and JavaScript, I create seamless and responsive web applications. My toolkit includes Bootstrap5 and TailwindCSS for efficient styling, while ReactJS is my go-to frameworks for building dynamic and interactive user experiences.
</p>
<p>
On the backend, I am skilled in NodeJS, allowing me to build scalable and high-performance server-side applications.<br>
I create robust APIs that seamlessly communicate with frontend interfaces.<br>
My expertise extends to working with databases, with a strong command of MySQL for efficient data management.
</p>
<p>
I navigate the entire software development life cycle, seamlessly connecting the frontend and backend.<br>
Using my proficiency in C# and the .NET Framework, I develop feature-rich applications that deliver a superior user experience.<br>
Swift is another language in my arsenal, enabling me to build high-quality iOS applications.React Native is another way to build high-quality Android applications.
</p>
<p>
Git & GitHub are integral parts of my workflow, ensuring efficient version control and collaborative development.<br>
Additionally, I have hands-on experience with CMS platforms like WordPress, and Square Space, enabling me to create and customize websites with ease.
</p>
<p>
I'm dedicated to bringing your ideas to life. Let's embark on a journey of innovation and excellence!
</p>
</div>
</div>
</div><!-- End About Me -->
<!-- ======= Skills ======= -->
<div class="interests container">
<div class="section-title">
<h2>Skills</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-html5' style="color: #f06529;"></i>
<h3>HTML 5</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-css3' style="color: #2965f1;"></i>
<h3>CSS 3</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-javascript' style="color: #f0db4f;"></i>
<h3>JavaScript</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-bootstrap' style="color: #563d7c;"></i>
<h3>Bootstrap 5</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-tailwind-css' style="color: #06b6d4;"></i>
<h3>Tailwindcss</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-react' style="color: #88dded;"></i>
<h3>Reactjs</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-nodejs' style="color: #3c873a;"></i>
<h3>Nodejs</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-mongodb' style="color: #4DB33D;"></i>
<h3>MongoDB</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-jquery' style="color: #0769ad;"></i>
<h3>jQuery</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-data' style="color: #F29111;"></i>
<h3>MySQL</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-c-plus-plus' style="color: #9b4993;"></i>
<h3>C#</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-c-plus-plus' style="color: #9b4993;"></i>
<h3>.Net Framework</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-apple'></i>
<h3>Swift</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-react' style="color: #88dded;"></i>
<h3>React Native</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-git' style="color: #F29111;"></i>
<h3>Git</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-github' style="color: #2dba4e;"></i>
<h3>GitHub</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-visual-studio' style="color: #0078d7;"></i>
<h3>Visual Studio Code</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-visual-studio' style="color: #5d2b90;"></i>
<h3>Visual Studio</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="bi bi-android" style="color: #3DDC84;"></i>
<h3>Android Studio</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-docker' style="color: #0db7ed;"></i>
<h3>Docker</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-aws' style="fcolor: #FF9900;"></i>
<h3>AWS</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-terminal' style="color: #fff;"></i>
<h3>Bash</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-wordpress' style="color: #21759b;"></i>
<h3>Wordpress</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-squarespace'></i>
<h3>Square Space</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-tux' style="color: #ffcc33;"></i>
<h3>Linux</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-apple'></i>
<h3>Mac</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bxl-windows' style="color: #00A3EE;"></i>
<h3>Windows</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-server' style="color: #f06529;"></i>
<h3>Hosting</h3>
</div>
</div>
</div>
</div><!-- End Skills -->
<!-- ======= Interests ======= -->
<div class="interests container">
<div class="section-title">
<h2>Interests</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-knife' style="color: #ffbb2c;"></i>
<h3>Wood Carving</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-pen' style="color: #e80368;"></i>
<h3>Calligraphy</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-library' style="color: #5578ff;"></i>
<h3>Reading Books</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bi bi-book' style="color: #47aeff;"></i>
<h3>Manga And Comics</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-film' style="color: #e361ff;"></i>
<h3>Movies And Documentaries</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-film' style="color: #ffa76e;"></i>
<h3>Anime</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-joystick' style="color: #4233ff;"></i>
<h3>Video Games</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="bi bi-mic" style="color: #11dbcf;"></i>
<h3>Recording Folly Sounds</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="bi bi-signpost-split" style="color: #3DDC84;"></i>
<h3>Hiking</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="bi bi-backpack3" style="color: #ffcc33;"></i>
<h3>Camping</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="bi bi-person-walking" style="color: #f06529;"></i>
<h3>Walking</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class="bi bi-palette" style="color: #88dded;"></i>
<h3>Handmade</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-football' style="color: #b2904f;"></i>
<h3>Football</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-basketball' style="color: #b20969;"></i>
<h3>Basketball</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-baseball' style="color: #ff5828;"></i>
<h3>Baseball</h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<div class="icon-box">
<i class='bx bx-medal' style="color: #29cc61;"></i>
<h3>Boxing</h3>
</div>
</div>
</div>
</div><!-- End Interests -->
<!-- ======= Testimonials ======= -->
<div class="testimonials container">
<div class="section-title">
<h2>Testimonials</h2>
</div>
<div class="testimonials-slider swiper" data-aos="fade-up" data-aos-delay="100">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Working with Fawzy was a game-changer. Their web design expertise transformed my online presence effortlessly. They understood my vision, delivered beyond expectations, and provided invaluable support throughout. Thanks to Fawzy, my pastry business is thriving online.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-1.jpg" class="testimonial-img" alt="">
<h3>Moniem</h3>
<h4>Pastry Chef</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Collaborating with Fawzy brought my practice's digital presence to life. His technical skills and dedication ensured a seamless website that reflects the quality of care we provide. The results have significantly enhanced how patients connect with our clinic online.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-6.jpg" class="testimonial-img" alt="">
<h3>DR. Mohamed Gebril</h3>
<h4>G PROSTHODONTICS</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Fawzy’s work was instrumental in helping our organization better serve the community. His innovative approach to web development ensured a user-friendly platform that aligns perfectly with our mission. Thanks to his efforts, our outreach and community engagement have reached new heights.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-7.jpg" class="testimonial-img" alt="">
<h3>Fun Canada</h3>
<h4>Family United Network</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Fawzy's expertise in web development transformed the way I showcase my portfolio. He captured the essence of my work, creating a stunning website that not only looks great but is also easy to navigate. His commitment to excellence truly stands out.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-8.jpg" class="testimonial-img" alt="">
<h3>Mostafa Ezat</h3>
<h4>Director of Photography</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Fawzy delivered a custom website solution that aligns perfectly with our automation services. His innovative approach and attention to detail made the process smooth and efficient. The new site has played a crucial role in boosting our online presence and client acquisition.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-9.jpg" class="testimonial-img" alt="">
<h3>Synergia Solutions</h3>
<h4>business automation solutions</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Collaborating with Fawzy was a breeze. Their portfolio design skills brought my bakery's creations to life online. From concept to execution, they were attentive, creative, and professional. Thanks to Fawzy, my bakery now has a stunning digital showcase that draws in customers.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-2.jpg" class="testimonial-img" alt="">
<h3>Ismail</h3>
<h4>Bakery</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Teaming up with Fawzy was a game-changer. Their collaborative spirit and technical expertise ensured smooth development from start to finish. With Fawzy on board, our project reached new heights of innovation and efficiency. Their professionalism and dedication made the collaboration a true success.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-3.jpg" class="testimonial-img" alt="">
<h3>Akram</h3>
<h4>Software Engineer</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Working with Fawzy on website design was a game-changer. Their professionalism and creativity elevated our project to new heights. Fawzy understood my vision, delivering stunning graphics with precision and flair. Working together was a seamless experience.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-4.jpg" class="testimonial-img" alt="">
<h3>Marawan</h3>
<h4>Griphic Designer</h4>
</div>
</div><!-- End testimonial item -->
<div class="swiper-slide">
<div class="testimonial-item">
<p>
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
Partnering with Fawzy for our website was transformative.Fawzy understood our needs, delivering a website that perfectly represents our video production company, ArtVeda MediaCasa. His professionalism and meticulous attention to detail made the collaboration effortless and enjoyable.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
<img src="assets/img/testimonials/testimonials-5.jpg" class="testimonial-img" alt="">
<h3>Shady</h3>
<h4>Artvidea Mediacasa CEO</h4>
</div>
</div><!-- End testimonial item -->
</div>
<div class="swiper-pagination"></div>
</div>
<div class="owl-carousel testimonials-carousel">
</div>
</div><!-- End Testimonials -->
</section><!-- End About Section -->
<!-- ======= Resume Section ======= -->
<section id="resume" class="resume">
<div class="container">
<div class="section-title">
<h2>Resume</h2>
</div>
<div class="row">
<div class="col-lg-6">
<h3 class="resume-title">Sumary</h3>
<div class="resume-item pb-0">
<h4>Fawzy Moawad</h4>
<p><em>Highly motivated Sound Engineer, Software and Web Developer graduate with a robust technical background and meticulous attention to detail. I bring a unique blend of technical expertise, creative problem-solving, and a strong work ethic to every project I undertake. My proficiency in React, Node.js, and JavaScript, combined with in-depth knowledge of front-end frameworks like Bootstrap and Tailwind CSS, allows me to create dynamic, responsive, and visually appealing web applications. I am passionate about staying at the forefront of web development trends and continually expanding my skill set to include the latest tools and technologies. With a strong foundation in coding and design, I am eager to contribute to innovative web solutions, collaborate with multidisciplinary teams, and deliver high-quality results that exceed client expectations. My goal is to leverage my diverse skill set to make a meaningful impact in the rapidly evolving tech industry</em></p>
<p>
<ul>
<li>Vancouver, BC, Canada</li>
<li>info@fawzymoawad.com</li>
</ul>
</p>
</div>
<h3 class="resume-title">Education</h3>
<div class="resume-item">
<h4>Diploma of Web & & Mobile Application development.</h4>
<p><em>Academy Of Learning, BC, Canada.</em></p>
<p>Successfully completed a comprehensive curriculum in Web & Mobile Application Development at Academy of Learning, BC, Canada, acquiring advanced skills in programming languages, front-end and back-end development, UI/UX design, and agile development methodologies.</p>
</div>
<div class="resume-item">
<h4>Bachelor, Mixing & Mastering Music</h4>
<p><em>Helwan University, Cairo, Egypt</em></p>
<p>Graduated with a Bachelor's degree in Mixing & Mastering Music from Helwan University, Cairo, Egypt, mastering the art of audio engineering, music production techniques, and studio management.</p>
</div>
<div class="resume-item">
<h4>Bachelor, Egyptian law</h4>
<p><em>Cairo University, Giza, Egypt</em></p>
<p>Received a Bachelor's degree in Egyptian Law from Cairo University, Giza, Egypt, gaining comprehensive knowledge of legal principles, jurisprudence, and the Egyptian legal system.</p>
</div>
</div>
<div class="col-lg-6">
<h3 class="resume-title">Professional Experience</h3>
<div class="resume-item">
<h4>Full-Stack Developer</h4>
<h5>2023 - Present</h5>
<p><em>Vancouver, BC, Canada</em></p>
<p>
<ul>
<li>Proficient in HTML, CSS, and JavaScript for creating visually appealing user interfaces. Skilled in Bootstrap5 and TailwindCSS for styling, ReactJS and jQuery for dynamic web applications.</li>
<li>Expertise in NodeJS for building scalable server-side applications. Strong command of MySQL for efficient data management. Capable of developing robust APIs for seamless communication between frontend and backend.</li>
<li>Navigate the software development life cycle seamlessly, connecting frontend and backend. Proficient in C# and the .NET Framework for feature-rich application development. Skilled in Swift for building high-quality iOS applications.</li>
<li>Utilize Git & GitHub for efficient version control and collaborative development. Hands-on experience with CMS platforms like WordPress and Square Space. Able to create and customize websites with ease.</li>
<li><strong>FUN (Family United Network):</strong> Developed a community-focused website for the Family United Network (FUN), an organization dedicated to supporting Canadian families.</li>
<li><strong>G PROSTHODONTICS:</strong> Developed a professional and user-friendly website for Dr. Mohamed Gebril, a specialist dentist. The site features a clean, modern design with a focus on accessibility and ease of navigation.</li>
<li><strong>Synergia Solutions:</strong> Created a robust web platform for an automation paperwork company, Synergia Solutions. Utilized HTML, TailwindCSS, and ReactJS to develop an intuitive and scalable user interface.</li>
<li><strong>Chef Moneim:</strong> Designed and developed a visually appealing and easy-to-navigate website for Chef Moneim, a renowned pastry chef. The site features vibrant imagery and interactive elements to showcase his culinary creations.</li>
<li><strong>Chef Ismail:</strong> Created a comprehensive online presence for Chef Ismail, a bakery chef. The website includes detailed sections for his baked goods, recipes, and services.</li>
<li><strong>DOP Mstafa Ezzat:</strong> Developed a portfolio website for DOP and cinematographer Mstafa Ezzat. The site features a sleek, minimalist design with embedded video content to showcase his work.</li>
<li><strong>ArtvidaMedia:</strong> Built a professional website for ArtvidaMedia, a media production company. The platform includes a portfolio section, service offerings, and client testimonials.</li>
</ul>
</p>
</div>
<div class="resume-item">
<h4>Sound Engineer</h4>
<h5>2019 - 2022</h5>
<p><em>Vancouver, BC, Canada</em></p>
<p>
<ul>
<li><b style="color: whitesmoke;">Audio Recording:</b> Engineered recording sessions for Rappers, solo artists, and voiceover talents, ensuring high-quality sound capture.</li>
<li><b style="color: whitesmoke;">Music Production:</b> Produced, arranged, and composed music tracks; created beats for various genres including hip-hop and electronic music.</li>
<li><b style="color: whitesmoke;">Mixing and Mastering:</b> Performed detailed mixing and mastering to achieve professional sound quality, adhering to industry standards.</li>
<li><b style="color: whitesmoke;">Voiceover Projects:</b> Edited and mixed voiceover recordings for commercials, audiobooks, and podcasts, ensuring clear and engaging audio. </li>
<li><b style="color: whitesmoke;">Client Collaboration:</b> Worked closely with clients to understand their vision and deliver audio products that meet their expectations.</li>
</ul>
</p>
</div>
<div class="resume-item">
<h4>Sound Engineer</h4>
<h5>2013 - 2018</h5>
<p><em>Cairo, Egypt</em></p>
<p>
<ul>
<li>Experienced in Recording audio for popular Egyptian series, television shows, and movies.</li>
<li>Managed a team of four, providing supervision, guidance, and support to ensure successful project execution.</li>
<li>Cultivated and nurtured strong relationships with clients, fostering trust and collaboration to deliver exceptional sound engineering services.</li>
<li>Established a reputation for consistently delivering high-quality results within agreed-upon timelines, earning recognition for professionalism and reliability.</li>
</ul>
</p>
</div>
</div>
</div>
<div class="interests container">
<div class="section-title">
<h2>Download</h2>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 mt-4">
<a href="./assets/pdf/English.pdf" target="_blank">
<div class="icon-box">
<i class="bi bi-arrow-down-square" style="color: #29cc61;"></i>
<h3>English</h3>
</div>
</a>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<a href="./assets/pdf/French.pdf" target="_blank">
<div class="icon-box">
<i class="bi bi-arrow-down-square" style="color: #29cc61;"></i>
<h3>French</h3>
</div>
</a>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-4 mt-4">
<a href="./assets/pdf/Spanish.pdf" target="_blank">
<div class="icon-box">
<i class="bi bi-arrow-down-square" style="color: #29cc61;"></i>
<h3>Spanish</h3>
</div>
</a>
</div>
<div class="col-lg-3 col-md-4 mt-4">
<a href="./assets/pdf/Arabic.pdf" target="_blank">
<div class="icon-box">
<i class="bi bi-arrow-down-square" style="color: #29cc61;"></i>
<h3>Arabic</h3>
</div>
</a>
</div>
</div>
</div>
</div>
</section><!-- End Resume Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<h2>Services</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="icon-box">
<div class="icon"><i class="bi bi-window"></i></div>
<h4><a href="#">Responsive Web Development</a></h4>
<p>I specialize in building responsive and dynamic websites and web apps that adapt seamlessly to all devices.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="icon-box">
<div class="icon"><i class="bi bi-window"></i></div>
<h4><a href="#">Website Managements</a></h4>
<p>Let me handle the management of your website, ensuring it stays up-to-date, secure, and performing at its best.</p>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch">
<div class="icon-box">
<div class="icon"><i class="bi bi-apple"></i><i class="bi bi-android2"></i></div>
<h4><a href="#">Cross-Platform App Development</a></h4>
<p>I develop cross-platform mobile apps that work seamlessly across iOS and Android, reaching a wider audience.</p>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title">
<h2>My Works</h2>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="portfolio-flters">
<li data-filter="*" class="filter-active">All</li>
<li data-filter=".filter-web">Web</li>
<li data-filter=".filter-proj">Proj</li>
<!--
<li data-filter=".filter-app">App</li>
-->
</ul>
</div>
</div>
<div class="row portfolio-container">
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-7.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>FUN</h4>
<p>an organization dedicated to supporting Canadian families. in Vancouver, BC .</p>
<div class="portfolio-links">
<a href="https://www.fun-canada.com/" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>DR. Gebril</h4>
<p>a dental specialist residing in Burnaby, BC .</p>
<div class="portfolio-links">
<a href="https://drgebril.com/" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Synergia Solutions</h4>
<p>automation company for paper works residing in Vancouver, BC .</p>
<div class="portfolio-links">
<a href="https://synergiasolutions.ca/" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-1.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Chef Moniem</h4>
<p>a passionate Bakery and Pastry Chef currently residing in Vancouver, BC .</p>
<div class="portfolio-links">
<a href="https://chefmoniem.com" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-2.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>DOP Mostafa</h4>
<p>DOP Cinematography Showcase, experience a harmonious blend of artistry and technique.</p>
<div class="portfolio-links">
<a href="https://fawzy-moawad.github.io/DOP-Mostafa.github.io/" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-3.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Artvidea Mediacasa</h4>
<p>Discover the essence of storytelling through lenses with ArtVidea Mediacasa.</p>
<div class="portfolio-links">
<a href="https://fawzy-moawad.github.io/ArtvideaMediaCasa.github.io/" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-web">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Chef Ismail</h4>
<p>symphony of flavors takes you on a journey through the world of irresistible aromas and mouthwatering creations.</p>
<div class="portfolio-links">
<a href="https://chef-ismail.com" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<!--Projects-->
<div class="col-lg-4 col-md-6 portfolio-item filter-proj">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/budget.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Budget-OOP</h4>
<p>designed to help users track their income and expenses, set financial goals, and manage their finances effectively.</p>
<div class="portfolio-links">
<a href="https://fawzy-moawad.github.io/Budget-OOP-Project.github.io/" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-proj">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/text-speach.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Text to Speech Converter</h4>
<p>modern web technologies to deliver a seamless and interactive experience, making it accessible and useful for a variety of users.</p>
<div class="portfolio-links">
<a href="https://fawzy-moawad.github.io/Text-to-Speech-Converter.github.io/" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-proj">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/suduko.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Sudoku</h4>
<p>a classic Sudoku grid with various difficulty levels, offering a fun and stimulating experience for players of all skill levels.</p>
<div class="portfolio-links">
<a href="https://fawzy-moawad.github.io/Sudoku.github.io/" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Explore Website"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</div>
<!--
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-4.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 1</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-4.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 1"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-5.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 2</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-5.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 2"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<div class="portfolio-wrap">
<img src="assets/img/portfolio/portfolio-6.jpg" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>App 3</h4>
<p>App</p>
<div class="portfolio-links">
<a href="assets/img/portfolio/portfolio-6.jpg" data-gallery="portfolioGallery" class="portfolio-lightbox" title="App 3"><i class="bx bx-plus"></i></a>
<a href="portfolio-details.html" data-gallery="portfolioDetailsGallery" data-glightbox="type: external" class="portfolio-details-lightbox" title="Portfolio Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
-->
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Contact Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact</h2>
</div>
<div class="row mt-2">
<div class="col-md-6 d-flex align-items-stretch">
<div class="info-box">
<i class="bx bx-map"></i>
<h3>My Address</h3>
<p>Vancouver, BC, Canada</p>
</div>
</div>
<div class="col-md-6 mt-4 mt-md-0 d-flex align-items-stretch">
<div class="info-box">
<i class="bx bx-share-alt"></i>
<h3>Social Profiles</h3>
<div class="social-links">
<a href="https://github.com/Fawzy-Moawad" class="github" target="_blank" rel="noopener" aria-label="GitHUB"><i class='bx bxl-github'></i></a>
<a href="https://www.linkedin.com/in/fawzy-moawad/" target="_blank" rel="noopener" aria-label="Linkedin"><i class='bx bxl-linkedin'></i></a>
</div>
</div>
</div>
<div class="col-md-6 mt-4 d-flex align-items-stretch">
<div class="info-box">
<i class="bx bx-envelope"></i>
<h3>Email Me</h3>
<p>info@fawzymoawad.com</p>
</div>
</div>
</div>
<!--
<form action="forms/contact.php" method="post" role="form" class="php-email-form mt-4">
<div class="row">
<div class="col-md-6 form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Your Name" required>
</div>
<div class="col-md-6 form-group mt-3 mt-md-0">
<input type="email" class="form-control" name="email" id="email" placeholder="Your Email" required>
</div>
</div>
<div class="form-group mt-3">
<input type="text" class="form-control" name="subject" id="subject" placeholder="Subject" required>
</div>
<div class="form-group mt-3">