-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
934 lines (854 loc) · 37.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="iHax Community - Gaming, Programmation, xenForo">
<title>Yassine Hadry </title>
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<!-- / Favicons
================================================== -->
<!-- >> CSS
============================================================================== -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Google Web Fonts -->
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@600&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- Nivo Lightbox -->
<link href="vendor/nivo-lightbox/nivo-lightbox.css" rel="stylesheet">
<link rel="stylesheet" href="vendor/nivo-lightbox/themes/default/default.css" type="text/css" />
<!-- /Nivo Lightbox -->
<!-- Perfect ScrollBar -->
<link href="vendor/perfect-scrollbar/css/perfect-scrollbar.min.css" rel="stylesheet">
<!-- owl carousel -->
<link href="vendor/owl.carousel/owl-carousel/owl.carousel.css" rel="stylesheet">
<link href="vendor/owl.carousel/owl-carousel/owl.theme.css" rel="stylesheet">
<!-- Main Styles -->
<link href="css/styles.css" rel="stylesheet">
<!-- >> /CSS
============================================================================== -->
</head>
<body>
<!-- Page Loader
========================================================= -->
<div class="loader-container" id="page-loader">
<div class="loading-wrapper">
<div class="loader-animation" id="loader-animation">
<span class="loader"><span class="loader-inner"></span></span>
</div>
<!-- Edit With Your Name -->
<div class="loader-name" id="loader-name">
Yassine <strong>Hadry</strong>
</div>
<!-- /Edit With Your Name -->
<!-- Edit With Your Job -->
<p class="loader-job" id="loader-job">Welcome !</p>
<!-- /Edit With Your Job -->
</div>
</div>
<!-- /End of Page loader
========================================================= -->
<!-- Main Content
================================================== -->
<section id="body" class="">
<div class="container" id="scrollable-content" >
<!-- MAIN MENU -->
<div class="main-menu" id="main-menu">
<ul class="main-menu-list">
<li><a href="#page-resume" class="link-home">Home</a></li>
<li><a href="#page-resume" class="link-page">Resume</a></li>
<li><a href="#page-blog" class="link-page">Projects</a></li>
<li><a href="#page-portfolio" class="link-page">Voulnteering & experiences</a></li>
<li><a href="#page-skills" class="link-page">Skills</a></li>
<li><a href="#page-contact" class="link-page">Contact me</a></li>
</ul>
</div>
<!-- /MAIN MENU -->
<!-- SECTION: vCard Body -->
<div class="section-vcardbody section-home" id="section-home" class="site-header" >
<!-- Profile pic-->
<div class="vcard-profile-pic">
<img src="img/pdp1.jpg" id="profile2" alt=""/>
<img src="img/pdp1.jpg" id="profile1" class="profileActive" alt=""/>
<!--<img src="img/profile.jpg" id="profile1" class="profileActive" alt=""/>-->
</div>
<!-- /Profile pic -->
<!-- Description -->
<div class="vcard-profile-description">
<!-- Profile title -->
<h1 class="profile-title">Hi, I'm <span class="color1">Yassine Hadry!</span></h1>
<h2 class="profile-subtitle"></h2>
<!-- /Profile Title -->
<!-- Description Text -->
<hr class="hr1">
<div class="vcard-profile-description-text">
<p>I love to create magnificent, scalable, and creative solutions to any real / virtual problem with technology </p>
</div>
<!--/ Description Text -->
<!-- Description feature -->
<div class="vcard-profile-description-feature">
<!-- item -->
<div class="vcard-profile-description-ft-item">
<p>Email: Hadryyassine@gmail.com </p>
</div>
<!-- item -->
</div>
<!-- /Description feature -->
</div>
<!-- /Description -->
<!-- Footer -->
<div class="vcard-footer">
<!-- Social Icons -->
<div class="footer-social-icons">
<a href="https://twitter.com/YassineHadry1"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/yassine-hadry-bab70214a/"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/hadryyassine"><i class="fa fa-github"></i></a>
</div>
<!-- /Social Icons -->
</div>
</div>
<!-- /SECTION: vCard Body -->
<!-- PAGE: RESUME -->
<div class="section-vcardbody section-page" id="page-resume" class="main-content" >
<!-- SECTION: Education -->
<div class="section-education">
<!-- Section title -->
<h2 class="section-title">Resume</h2>
<!-- /Section title -->
<!-- Buttons -->
<div class="resume-buttons header-page-buttons">
<!-- Get in Touch button -->
<a href="#page-contact" class="btn btn-default btn-default2 link-page"><i class="fa fa-download"></i> Get in Touch</a>
<!-- /Get in Touch button -->
</div>
<!-- /Buttons -->
<!-- SECTION: WORK EXPERIENCE -->
<div class="section-education">
<h2 class="section-title2"><i class="fa fa-flag"></i> Work Experience</h2>
<!-- Resume Item -->
<div class="resume-item">
<!-- Work Place -->
<h3 class="section-item-title-1">Bright network Internship Experience</h3>
<!-- /Work Place -->
<!-- Job Time -->
<h4 class="job">Technology Intern - Online : <span class="job-date">July 2020</span></h4>
<!-- /Job Time-->
<!-- content -->
<div class="graduation-description">
<p>Internship programme run by some of the world's leading employers as part of Bright Network's Technology Internship Experience UK
<br> I have worked on the facial recognition system production plan for a mobile banking app :
<ul>
<li>setting a description of the recognition system </li>
<li>preparing user stories </li>
<li>making a project plan and an internal communication plan </li>
</ul>
<a href="https://ibb.co/zmvtcxs">Internship certificate</a>
</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- Resume Item -->
<div class="resume-item">
<!-- Work Place -->
<h3 class="section-item-title-1">Funtawn</h3>
<!-- /Work Place -->
<!-- Job Time -->
<h4 class="job">Co-founder & executif director : <span class="job-date">Jun 2017 - July 2020</span></h4>
<!-- /Job Time-->
<!-- content -->
<div class="graduation-description">
<p>Funtawn is a start-up founded by young students when we were 15 years old, it produces "Ami Rahal" comics, these comics explain the classic lessons in a fun way using the method of storytelling, caricatures, and mind mapping to facilitate comprehension for the students.
<br><h5>Achievements</h5>
<ul>
<li>Best young start-up in Morocco in Tanara ( ex-Tamkeen) Initiative competition- 2017</li>
<li>Top 60 young start-ups in Africa by Anzisha Prize program 2019 </li>
<li>We have reached over 5000 students directly and indirectly </li>
</ul>
<a href="https://www.facebook.com/funtawncomics/">Facebook page </a><br>
<a href="https://lematin.ma/express/2019/funtawn-jeunes-participent-education/309266.html">Le Matin article about Funtawn </a> <br>
<a href="https://www.aljazeera.net/news/miscellaneous/2019/2/24/دروس-كلاسيكية-المغرب-قصص-مصورة">Aljazeera article about Funtawn </a>
</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- Resume Item -->
<div class="resume-item">
<!-- Work Place -->
<h3 class="section-item-title-1">Educall Morocco - High school Internship </h3>
<!-- /Work Place -->
<!-- Job Time -->
<h4 class="job">Communication & Events Coordinator intern : <span class="job-date">Jul 2018</span></h4>
<!-- /Job Time-->
<!-- content -->
<div class="graduation-description">
<p>I discovered the world of business in an early age through this high school internship . I've learned how to coordinate with my team . We organized three educational events for childern . Also , I've set and executed a communication plan for july month.</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
</div>
<!--/ SECTION: WORK EXPERIENCE -->
<h2 class="section-title2"><i class="fa fa-university"></i> Education</h2>
<!-- Resume Item -->
<div class="resume-item">
<!-- Graduation title -->
<h3 class="section-item-title-1"> Software engineering Student - ENSIAS </h3>
<!-- /Graduation title -->
<!-- Graduation time -->
<h4 class="graduation-time">First year -- </b><span class="graduation-date">Expected graduation : Jun 2024</span></h4>
<!-- /Graduation time -->
<!-- content -->
<div class="graduation-description">
<p>I went to ENSIAS, the top engineering school for Computer Science in Morocco.
<br> Related courses :
<ul>
<li>Graph Theory </li>
<li>Probability & Statistics </li>
<li>C programming language</li>
<li>Linear programming</li>
<li>Data structure</li>
<li>Java programming language & OOP</li>
<li>Database & PL/SQL</li>
<li>Computer architecture & Assembly language</li>
</ul>
</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- Resume Item -->
<div class="resume-item">
<!-- Graduation title -->
<h3 class="section-item-title-1">CPGE Mohammed IV, Kenitra</h3>
<!-- /Graduation title -->
<!-- Graduation time -->
<h4 class="graduation-time">two years <b>Mathematic and computer science option </b><span class="graduation-date">Sept 2019 - August 2021 </span></h4>
<!-- /Graduation time -->
<!-- content -->
<div class="graduation-description">
<p>Intensive preparatory courses with the main goal to attend one of the prestigious engineering schools « grandes écoles ».
<br>
Main courses:
<ul>
<li> <b>Maths :</b> Linear Algebra, Calculus, Probability , topology </li>
<li><b>Computer science :</b> Algorithms, Python , Data structure , SQL </li>
<li><b>Physics :</b> Electromagnetism, Electricity, Mechanics, Thermodynamics, Quantum </li>
<li><b>Chemistry</b></li>
<li><b>Control engineering</b></li>
<li><b>Philosophy</b></li>
</ul> </p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- Resume Item -->
<div class="resume-item">
<!-- Graduation title -->
<h3 class="section-item-title-1"> Abderhman Ennacer High school </h3>
<!-- /Graduation title -->
<!-- Graduation time -->
<h4 class="graduation-time"> International Baccalaureate (French option)-Mathematical science-B </h4>
<!-- /Graduation time -->
<!-- content -->
<div class="graduation-description">
<p>Extracurricular activities :
<ul>
<li>School representative of Microsoft office specialist competition</li>
<li>Board member of Cultural club (Speaker and Events coordinator)</li>
<li>Board member of English club (Graphic designer)</li>
</ul>
</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
</div>
<!--/ SECTION: Education -->
<div class="page-footer">
<!-- Buttons -->
<div class="resume-buttons">
<!-- Get in Touch button -->
<a href="#page-contact" class="btn btn-default btn-default2 link-page"><i class="fa fa-download"></i> Get in Touch</a>
<!-- /Get in Touch button -->
</div>
<!-- /Buttons -->
<!-- Quote -->
<p class="footer-quote">"If it doesn't challenge you , it doesn't change you "<br/></p>
<!-- /Quote -->
</div>
</div>
<!-- /PAGE: RESUME -->
<!-- SECTION: SKILLS-->
<div class="section-vcardbody section-page" id="page-skills" class="main-content" >
<div class="section-skills">
<!-- Section title -->
<h2 class="section-title">SKILLS</h2>
<!-- /Section title -->
<!-- Subtitle -->
<h3 class="section-item-title-2"><i class="fa fa-users"></i> Professional Skills</h3>
<!-- /Subtitle -->
<!-- Skils List -->
<ul class="skills-list">
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar" role="progressbar" data-percent="100%" style="width: 100%;">
</div>
<span class="progress-type">Creativity</span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar progress-bar-2" role="progressbar" data-percent="100%" style="width: 100%;">
</div>
<span class="progress-type">Leadership</span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress" title="Doing my best!">
<div class="progress-bar progress-bar-3" role="progressbar" data-percent="100%" style="width: 100%;">
</div>
<span class="progress-type">Problem Solving</span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress" title="Doing my best!">
<div class="progress-bar progress-bar-4" role="progressbar" data-percent="100%" style="width: 100%;">
</div>
<span class="progress-type">Communication</span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress" title="Doing my best!">
<div class="progress-bar progress-bar-5" role="progressbar" data-percent="100%" style="width: 100%;">
</div>
<span class="progress-type">Adaptability</span>
</div>
</li>
<!-- /item list -->
</ul>
<!-- /Skils List -->
<!-- Subtitle -->
<h3 class="section-item-title-2"><i class="fa fa-code"></i> Coding Skills</h3>
<!-- /Subtitle -->
<!-- Skils List -->
<ul class="skills-list">
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar progress-bar-4" data-percent="100%" role="progressbar" style="width: 100%;">
</div>
<span class="progress-type">Python </span>
</div>
</li>
<li>
<div class="progress">
<div class="progress-bar" data-percent="100%" role="progressbar" style="width: 100%;">
</div>
<span class="progress-type">HTML5 / CSS3 / Bootstrap</span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar progress-bar-2" data-percent="100%" role="progressbar" style="width: 100%;">
</div>
<span class="progress-type">Javascript </span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar progress-bar-3" data-percent="100%" role="progressbar" style="width: 100%;">
</div>
<span class="progress-type">C programming language</span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar progress-bar-5" data-percent="100%" role="progressbar" style="width: 100%;">
</div>
<span class="progress-type">SQL</span>
</div>
</li>
<!-- /item list -->
</ul>
<!-- /Skils List -->
<!-- Subtitle -->
<h3 class="section-item-title-2"><i class="fa fa-laptop"></i> Software Skills</h3>
<!-- /Subtitle -->
<!-- Skils List -->
<ul class="skills-list">
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar progress-bar-2" data-percent="100%" role="progressbar" style="width: 100%;">
</div>
<span class="progress-type">Web developement</span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar progress-bar-3" data-percent="100%" role="progressbar" style="width: 100%;">
</div>
<span class="progress-type">Graphic Design (Adobe,Figma)</span>
</div>
</li>
<!-- /item list -->
<!-- item-list -->
<li>
<div class="progress">
<div class="progress-bar" data-percent="100%" role="progressbar" style="width: 100%;">
</div>
<span class="progress-type">GUI applications</span>
</div>
</li>
<!-- /item list -->
</ul>
<!-- /Skils List -->
</div>
</div>
<!-- /SECTION: SKILLS -->
<!-- SECTION: Achievmenets& experiences -->
<div class="section-vcardbody section-page" id="page-portfolio" class="main-content" >
<div class="section-portfolio">
<!-- Section title -->
<h2 class="section-title"> Voulnteering & Achievements </h2>
<!-- /Section title -->
<!-- blog-item -->
<div class="section-education">
<h2 class="section-title2"><i class="fa fa-users"></i> Organizations' memberships</h2>
<div class="blog-item">
<div class="blog-item-wrapper">
<!-- blog item thumbnail -->
<div class="blog-item-thumb">
<img src="img/ieeecertificate.png" alt="">
</div>
<!-- /blog item thumbnail -->
<!-- Blog item - infos -->
<!-- Resume Item -->
<div class="resume-item">
<!-- Work Place -->
<h3 class="section-item-title-1">IEEE ENSIAS Student branch </h3>
<!-- /Work Place -->
<!-- Job Time -->
<h4 class="job">Event & sponsoring commitee : <span class="job-date">December 2021 - Now </span></h4>
<!-- /Job Time-->
<!-- content -->
<div class="graduation-description">
<p>IEEE is the largest professional and technological association globally.
IEEE Ensias Student Branch aims, like the rest of its inter- national peers, to promote scientific knowledge in the field of engineering
Through its workshops, meetings and conferences organized during each school year . <br> </p>
<p>
<b>#BuildYourFirstAppFromScratch Event : </b> It’s a series of talks that covered every aspect of making an application/software. As a part of the orgniziation comitee , i have successfully contacted many high enginnering profiles and invited them to our event .
Also , I had the pleasure of moderating a fabulous talk by Mr. Mehdi Cheracher, <b>a software engineer at Google</b>. This talk covered #Distributed_systems topic.
</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- /blog item - infos -->
</div>
</div>
<!-- /Resume Item -->
<div class="blog-item">
<div class="blog-item-wrapper">
<!-- blog item thumbnail -->
<div class="blog-item-thumb">
<img src="img/Anoual.jpg" alt="">
</div>
<!-- /blog item thumbnail -->
<!-- Blog item - infos -->
<!-- Resume Item -->
<div class="resume-item">
<!-- Work Place -->
<h3 class="section-item-title-1">Ex-Member of Anoual Association </h3>
<!-- /Work Place -->
<!-- Job Time -->
<h4 class="job">Digital communication responsible & Active member <span class="job-date"><br>Sept 2018 - Feb 2022 </span></h4>
<!-- /Job Time-->
<!-- content -->
<div class="graduation-description">
<p>ANOUAL Association focuses on creating innovative and impactful projects to support Moroccan youth.
its main focus is empowering young leaders by the power of social innovation and entrepreneurship to bring innovative solutions to
the challenge our society faces. </p>
<p>
<b>Digigirlz Mentorship Program 2019-2021 : </b> The biggest movement of girls in STEM ,
seeks to promote technological knowledge and encourage young girls to get involved and innovate by developing their
startup ideas in STEM field .
</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- /blog item - infos -->
</div>
</div>
<!-- Resume Item -->
<div class="resume-item">
<!-- Work Place -->
<h3 class="section-item-title-1">Member of ENSIAS TV </h3>
<!-- /Work Place -->
<!-- Job Time -->
<h4 class="job">Graphic design : <span class="job-date"> September 2022 - NOW</span></h4>
<!-- /Job Time-->
<!-- content -->
<div class="graduation-description">
<p> Ensias became the first Moroccan school to rely on state-of-the-art digital marketing strategies through Ensias TV, led by highly-motivated and passionate students,
where they display their creativity and marketing skills to promote ENSIAS on social media.</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- Resume Item -->
<div class="resume-item">
<!-- Work Place -->
<h3 class="section-item-title-1">Member of Forum GENI ENTREPRISES </h3>
<!-- /Work Place -->
<!-- Job Time -->
<h4 class="job">Prospection & Sponsorship commitee<span class="job-date">September 2022 - NOW</span></h4>
<!-- /Job Time-->
<!-- content -->
<div class="graduation-description">
<p>
" Le Forum GENI ENTREPRISES " is a big event organized by 4 prestigious schools of Rabat, namely ENSIAS, INPT, INSEA and ESI that aims to connect ambitious students looking for internships and job offers with professionals and organizations looking for distinguished profiles. </p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
</div>
<!-- /blog-item -->
<!-- blog-item -->
<div class="section-education">
<h2 class="section-title2"><i class="fa fa-microphone"></i> Inspirational speaker</h2>
<div class="blog-item">
<div class="blog-item-wrapper">
<!-- blog item thumbnail -->
<div class="blog-item-thumb">
<img src="img/speakers.jpg" alt="">
</div>
<!-- /blog item thumbnail -->
<!-- Blog item - infos -->
<!-- Resume Item -->
<div class="resume-item">
<!-- content -->
<div class="graduation-description">
<p>I have been invited to be a speaker at many events, to share my entrepreneurship experience at early age, and to tell everyone,
it's possible to start your own business at the age of 15 years old and achieve magnificent results. I've been an inspirational speaker at :
<ul>
<li>The Moroccan entrepreneurship summit by Moroccan cise </li>
<li>The hall of fame event by ENCGK & ENSAK </li>
<li>The fuckups nights by Friedrich Naumann fondation</li>
<li>Power Plus event by Road Najah Association</li>
</ul>
</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- /blog item - infos -->
</div>
</div>
<!-- /blog-item -->
</div>
<!-- blog-item -->
<div class="section-education">
<h2 class="section-title2"><i class="fa fa-users"></i> Events' Participation</h2>
<div class="blog-item">
<div class="blog-item-wrapper">
<!-- blog item thumbnail -->
<div class="blog-item-thumb">
<img src="img/events.jpg" alt="">
</div>
<!-- /blog item thumbnail -->
<!-- Blog item - infos -->
<!-- Resume Item -->
<div class="resume-item">
<!-- content -->
<div class="graduation-description">
<p>I have been attending events at an early age.
It's a fabulous opportunity to connect with people from different domains and backgrounds, to learn, share, and network. Here is some great Events I have attended :
<ul>
<li>The model of OIC in <b>Istanbul ,Turkey</b> </li>
<li>The summer of discovery camp co-orgnized by Anoual Association and the US embassy of Morocco
</li>
<li>The Moroccan political forum in Al-Akhawayn University</li>
<li>JA company program by Injaz-AL Maghreb</li>
<li>Arab Affiliate summit for affiliate marketing </li>
<li>The Moroccan entrepreneurship summit by Moroccan cise</li>
</ul>
</p>
</div>
<!-- /Content -->
</div>
<!-- /Resume Item -->
<!-- /blog item - infos -->
</div>
</div>
<!-- /blog-item -->
</div>
</div>
</div>
<!-- /SECTION: PORTFOLIO -->
<!-- SECTION: BLOG-->
<div class="section-vcardbody section-page" id="page-blog" class="main-content" >
<div class="section-blog">
<!-- Section title -->
<h2 class="section-title">Projects</h2>
<!-- /Section title -->
<!-- blog-item -->
<div class="blog-item">
<div class="blog-item-wrapper">
<!-- blog item thumbnail -->
<div class="blog-item-thumb">
<a href="webdev.html" class="loadPost1"><img src="img/portfolioimg.png" alt=""></a>
</div>
<!-- /blog item thumbnail -->
<!-- Blog item - infos -->
<div class="blog-item-infos">
<!-- blog-item-title -->
<div class="blog-item-title-wrapper">
<h2 class="blog-item-title title-border"><a href="webdev.html" class="loadPost1">My portfolio</a></h2>
<h5 class="blog-dev-title title-border">Web developement</h5>
</div>
<!-- /blog-item-title -->
<!-- blog item - description -->
<div class="blog-item-description">
<p><a href="webdev.html" class="loadPost1">My portfolio is my first ever web development project. I've created it with ... </a></p>
</div>
<!-- /blog-item-description -->
<!-- blog item - link -->
<div class="blog-item-link">
<a href="webdev.html" class="btn btn-default loadPost1">See More</a>
</div>
<!-- /blog item - link -->
</div>
<!-- /blog item - infos -->
</div>
</div>
<!-- /blog-item -->
<!-- BLOG POSTS -->
<div class="blog-posts">
<!-- blog-item -->
<div class="blog-item">
<div class="blog-item-wrapper">
<!-- blog item thumbnail -->
<div class="blog-item-thumb">
<a href="emailsec.html" class="loadPost"><img src="img/tipeimg.jpg" alt=""></a>
</div>
<!-- /blog item thumbnail -->
<!-- Blog item - infos -->
<div class="blog-item-infos">
<!-- blog-item-title -->
<div class="blog-item-title-wrapper">
<h2 class="blog-item-title title-border"><a href="emailsec.html" class="loadPost">Emails security : Naive Bayes spam filtering </a></h2>
<h5 class="blog-ml-title title-border">Machine learning</h5>
</div>
<!-- /blog-item-title -->
<!-- blog item - description -->
<div class="blog-item-description">
<p><a href="emailsec.html" class="loadPost">As part of the evaluation test of the personal initiative work (TIPE), I worked on the subject: "The security of emails: Bayesian filter of SPAM.....</a></p>
</div>
<!-- /blog-item-description -->
<!-- blog item - link -->
<div class="blog-item-link">
<a href="emailsec.html" class="btn btn-default loadPost">See More</a>
</div>
<!-- /blog item - link -->
</div>
<!-- /blog item - infos -->
</div>
</div>
<!-- /blog-item -->
<!-- blog-item -->
<div class="blog-item">
<div class="blog-item-wrapper">
<!-- blog item thumbnail -->
<div class="blog-item-thumb">
<a href="graphicdesign.html" class="loadPost2"><img src="img/graphicdesignimg.png" alt=""></a>
</div>
<!-- /blog item thumbnail -->
<!-- Blog item - infos -->
<div class="blog-item-infos">
<!-- blog-item-title -->
<div class="blog-item-title-wrapper">
<h2 class="blog-item-title title-border"><a href="graphicdesign.html" class="loadPost2">Graphic design portfolio</a></h2>
<h5 class="blog-gd-title title-border">Design</h5>
</div>
<!-- /blog-item-title -->
<!-- blog item - description -->
<div class="blog-item-description">
<p><a href="graphicdesign.html" class="loadPost2">I’m a part-time Graphic design freelancer who’s delivered creative and engaging solutions across....</a></p>
</div>
<!-- /blog-item-description -->
<!-- blog item - link -->
<div class="blog-item-link">
<a href="graphicdesign.html" class="btn btn-default loadPost2">See More</a>
</div>
<!-- /blog item - link -->
</div>
<!-- /blog item - infos -->
</div>
</div>
<!-- /blog-item -->
</div>
<!-- /BLOG POSTS -->
<!-- Pagination -->
<div class="section-pagination">
<div class="row">
<div class="col-xs-12">
<span class="pagination-numbers">
<a href="#">1</a>
</span>
</div>
</div>
</div>
<!-- /Pagination -->
</div>
</div>
<!-- /SECTION: BLOG -->
<!-- SECTION: BLOG SINGLE-->
<div class="section-vcardbody section-page section-page-single" id="page-blog-single">
<div class="section-blog-single">
<!-- Load the single.html content via AJAX -->
<div id="postHere"></div>
<!-- /Load the single.html content via AJAX -->
</div>
</div>
<div class="section-vcardbody section-page section-page-single" id="page-blog-single1">
<div class="section-blog-single1">
<!-- Load the single.html content via AJAX -->
<div id="postHere1"></div>
<!-- /Load the single.html content via AJAX -->
</div>
</div>
<div class="section-vcardbody section-page section-page-single" id="page-blog-single2">
<div class="section-blog-single2">
<!-- Load the single.html content via AJAX -->
<div id="postHere2"></div>
<!-- /Load the single.html content via AJAX -->
</div>
</div>
<!-- /SECTION: BLOG SINGLE -->
<!-- SECTION: CONTACT-->
<div class="section-vcardbody section-page" id="page-contact" class="main-content" >
<div class="section-contact">
<!-- Section title -->
<h2 class="section-title">Contact</h2>
<!-- /Section title -->
<!-- Contact form -->
<h4 class="contact-subtitle-1"><i class="fa fa-paper-plane-o"></i> Send Me a Message</h4>
<form id="contactForm" method="post" class="form">
<!-- Form Field -->
<div class="form-group">
<input class="form-control required" id="name" name="name" placeholder="Name" type="text" required />
</div>
<!-- /Form Field -->
<!-- Form Field -->
<div class="form-group">
<input class="form-control required" id="email" name="email" placeholder="Email" type="email" required />
</div>
<!-- /Form Field -->
<!-- Form Field -->
<div class="form-group">
<input class="form-control required" id="subject" type="text" name="subject" placeholder="Subject" required>
</div>
<!-- /Form Field -->
<!-- Form Field -->
<div class="form-group">
<textarea class="form-control required" id="message" name="message" placeholder="Message" rows="5" required></textarea>
</div>
<!-- /Form Field -->
<!-- Form Field -->
<div class="form-group">
<input type="submit" class="btn btn-default form-send" value="Send!">
</div>
<!-- /Form Field -->
</form>
<!-- /Contact Form -->
</div>
</div>
<!-- /SECTION: CONTACT -->
</div>
</section>
<!-- /Main Content
================================================== -->
<!-- Contact Form - Ajax Messages
========================================================= -->
<!-- Form Sucess -->
<div class="form-result modal-wrap" id="contactSuccess">
<div class="modal-bg"></div>
<div class="modal-content">
<h4 class="modal-title"><i class="fa fa-check-circle"></i> Success!</h4>
<p>Your message has been sent to us.</p>
</div>
</div>
<!-- /Form Sucess -->
<!-- form-error -->
<div class="form-result modal-wrap" id="contactError">
<div class="modal-bg"></div>
<div class="modal-content">
<h4 class="modal-title"><i class="fa fa-times"></i> Error</h4>
<p>There was an error sending your message.</p>
</div>
</div>
<!-- /form-error -->
<!-- Contact Form - Ajax Messages
========================================================= -->
<!-- >> JS
============================================================================== -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="vendor/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="vendor/validate.js"></script>
<!-- Holder JS -->
<script src="vendor/holder.js"></script>
<!-- Modal box-->
<script src="vendor/nivo-lightbox/nivo-lightbox.min.js"></script>
<!-- /Modal Box -->
<!-- Perfect ScrolBar -->
<script src="vendor/perfect-scrollbar/js/min/perfect-scrollbar.jquery.min.js"></script>
<!-- /Perfect ScrolBar -->
<!-- Owl Caroulsel -->
<script src="vendor/owl.carousel/owl-carousel/owl.carousel.js"></script>
<!-- Google Maps -->
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<!-- Cross-browser -->
<script src="vendor/cross-browser.js"></script>
<!-- Main Scripts -->
<script src="js/main2.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="vendor/html5shiv.js"></script>
<script src="vendor/respond.min.js"></script>
<![endif]-->
<!-- >> /JS
============================================================================= -->
</body>
</html>