-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
883 lines (747 loc) · 42.9 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- icon -->
<link rel="icon" href="./img/logo-grai.png" type="image/png">
<!-- ----- -->
<title>AI Day</title>
<meta author="Ali.D.E Bouakaz">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- css -->
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/style-timeline.css">
<link rel="stylesheet" href="./css/style-split.css">
<link rel="stylesheet" href="./css/footer.css">
<link rel="stylesheet" href="./css/secrollbar.css">
<link rel="stylesheet" href="./css/org_style.css">
<link rel="stylesheet" href="./css/sponsors_slider.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-...your-sha-hash-here..." crossorigin="anonymous" />
<!-- <link rel="stylesheet" href="./css/org_resp.css"> -->
<!-- js -->
<script src="./index.js"></script>
<title>Ai-Day</title>
</head>
<body>
<div class="nav">
<img class="logo" src="./img/TG-logo-l-2.png" alt="logo-TG" id="logo-TG">
<img class="logo" src="./img/logologo.png" alt="logo" id="logo-AI">
<div class="nav-btn">
<button id="hakaton">hakatoon</button>
<button id="best-idea">best idea</button>
</div>
</div>
<div class="main">
<div class=part1>
<img class="logo" src="./img/logo-grai.png" alt="logo" id="logo-main">
</div>
<div id="part2-title">
<h1>  AI Day Timeline  </h1>
</div>
<!-- Part1_5 -->
<!--! ==============|Conference|============== -->
<div class="part1_5">
<div id="part1_5-title">
<h1>  Conferences  </h1>
</div>
<div>
<!-- The Timeline -->
<ul class="timeline">
<!-- Conference 1 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag" >Conference 01</span>
<span class="time-wrapper"><span class="time">09:00 - 09:30</span></span>
</div>
<div class="desc">
<p><b>Title:</b> AI : Transforming industries</p>
<p><b>Speaker:</b> Pr. Farou Brahim,Computer Science Departement,Guelma University ,
Algerie. An active member of the GADM team at the LabSTIC laboratory. Additionally, He holds the position of President of the Scientific Committee of the Computer Science Department </p>
</div>
</div>
</li>
<!-- Conference 2 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Conference 2</span>
<span class="time-wrapper"><span class="time">10:00 - 10:30</span></span>
</div>
<!-- style="text-align: center;" -->
<div class="desc">
<p><b>Title:</b> A brief history of Language models</p>
<p><b>Speaker:</b> Dr. Abdaoui Amine, Oracle, France. Expert researcher in Airbus
France & Huawei Ireland Research Cener. A Member in High Council for Artificial Intelligence </p>
</div>
</div>
</li>
<!-- Conference 3 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag" >Conference 3</span>
<span class="time-wrapper"><span class="time">10:30 - 11:00</span></span>
</div>
<div class="desc">
<p><b>Title:</b> Intelligent Energy : AI the service of energy transition</p>
<p><b>Speaker:</b> Dr. Rebai Ahmed, Creator of a Value startup in bio-industry…
Researcher in the Biotechnology Center, Sfax, Tunisia. …
visiting professor at different universities in France.</p>
</div>
</div>
</li>
</ul>
</div>
</div>
<!--! ==============|==========|============== -->
<!-- Part2 -->
<!--! ===========|Workshops|============= -->
<div class="part2">
<div id="part2-title">
<h1>  Workshops  </h1>
</div>
<div>
<!-- The Timeline -->
<ul class="timeline">
<!-- workshop 1 -->
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag" >Workshop 01</span>
<span class="time-wrapper"><span class="time">13:15 - 15:00</span></span>
</div>
<div class="desc">
<h3>Speakers:</h3>
Ali Benyounes <br>
Touahri Anis <br>
Yehya Bouchbout
<h3>Title: Workshop in AI & Agriculture & Farming </h3>
<b>Theme1:</b> Early and Automatic Detection System for Heat in Dairy Cows.</p>
<b>Theme2:</b> Detection of Diseases on Apple Tree Branches.</p>
<b>Theme3:</b> IA in Food Supply Chain</p> <br>
<a target="_blank" href="https://techgeeks.univ-guelma.dz/events/xA5tfTaGVyQ4qiOW" class="btn" id="htb"><button>Join Now!</button></a>
</div>
</div>
</li>
<!-- workshop 2 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Workshop 02</span>
<span class="time-wrapper"><span class="time">13:15 - 15:00</span></span>
</div>
<!-- style="text-align: center;" -->
<div class="desc">
<h3>Speakers:</h3>
Azzedine dhiya eddine <br>
Bouguettaya Sirine <br>
Manar Bensaada <br>
<h3>Title: Workshop in AI & Health</h3>
<b>Theme1:</b> Smart Assistant: A system that integrates AI and IoT to provide assistance and personal support for elderly and patients</p>
<b>Theme2:</b> Smart Monitoring of Premature Babies Using Edge Intelligence</p>
<b>Theme3:</b> Intrusion Detection for Internet of Medical Things (IoMT) using Machine Learning</p> <br>
<a target="_blank" href="https://techgeeks.univ-guelma.dz/events/vw6lDtcXazvVJkMa" class="btn" id="htb"><button>Join Now!</button></a>
</div>
</div>
</li>
<li>
<div class="direction-r">
<div class="flag-wrapper">
<span class="flag" >Workshop 03</span>
<span class="time-wrapper"><span class="time">13:15 - 15:00</span></span>
</div>
<div class="desc">
<b>Speakers:</b>
<br> Ilyes Ziaya <br>
Bechiri Mohamed Yacine <br>
Hamouda Djallel <br>
Ahmed Rami Bouguettoucha
<h3>Title: Workshop in AI & Security</h3>
<b>Theme 1:</b> AI to improve data integrity in Blockchain systems</p>
<b>Theme 2:</b> Integration of an Image Recognition Solution for Identity Management at Djezzy.</p>
<b>Theme 3:</b> AI-Powered Cybersecurity Innovations: Securing the Digital Age</p>
<b>Theme 4:</b> SimBox fraud detection in Djezzy </p> <br>
<a target="_blank" href="https://techgeeks.univ-guelma.dz/events/4Z7exlH1xhueqS2q" class="btn" id="htb"> <button>Join Now!</button> </a>
</div>
</div>
</li>
<!-- workshop 4 -->
<li>
<div class="direction-l">
<div class="flag-wrapper">
<span class="flag">Workshop 04</span>
<span class="time-wrapper"><span class="time">13:15 - 15:00</span></span>
</div>
<!-- style="text-align: center;" -->
<div class="desc">
<h3>Speakers:</h3>
Soufyane Bouchelaghem<br>
Seddiki Loubna <br>
Brahmia Abdelbacet <br>
Farah Rania
<h3>Title: Workshop in AI & Energy & Environment</h3>
<b>Theme1:</b> Aerial remote sensing for plastic waste detection using hyper-spectral and satellite imaging based on Deep Learning.</p>
<b>Theme2:</b> Intelligent system for Prediction & Monitoring Forest fire</p>
<b>Theme3:</b> AI in Energy</p> <br>
<a target="_blank" href="https://techgeeks.univ-guelma.dz/events/518zfHJBPjeOclLb" class="btn" id="htb"><button>Join Now!</button></a>
</div>
</div>
</li>
</ul>
</div>
</div>
<!--! ===========|============|============= -->
<div class="part2_5" style="width: 100%;display: flex;justify-content: center;">
<div id="part2-title">
<h1> Competitions </h1>
</div>
</div>
</div>
<!-- Part3 -->
<div class=part3>
<div class="container">
<div class="card" id="c1" >
<div class="comp-info" id="cib">
<h2>Call for Participation in: Hackathon at AI Day 2024</h2>
<p>Are you passionate about artificial intelligence (AI) and brimming with innovative ideas? Here's your chance to showcase your creativity and entrepreneurial spirit at the AI Idea Competition, part of AI Day at the University of 8 May 1945 GUELMA!</p>
<br>
<p>We are happy to invite you to participate in this exciting hackathon, This 24-hour hackathon pits teams against each other in a battle of ingenuity. Tackle one of two captivating topics, one firmly rooted in AI,the other will challenge you to apply your AI knowledge to a broader theme.. </p>
<p>Compete for 24 hours, tackling real-world challenges. Hone your technical skills, network with industry leaders, and potentially win life-changing prizes. This is your chance to make a mark on the future of AI.</p>
<p>when the hackaton ends , the participants will present their works to the juries who will judge and pick up the winners...</p>
<p>Here's why you should participate:</p>
<ul>
<li>This hackatoon is a great opportunity to showcase your creativity and programming skills to a group of experts and investors.</li>
<li>A chance to build a network of relationships with new people from different fields..</li>
<li>Develop your technical skills, teamwork skills, and communication with team members.</li>
<li>And finally, valuable prizes await the high achievers.</li>
</ul>
<br>
<p>How to participate:</p>
<ol>
<li>Create a team: Gather 3-5 participants for a collaborative effort. </li>
<li>For the registration , you need to head over to our website (Join Now ) and confirm your participation.</li>
<li>Shortlisted teams will receive detailed information via email, outlining the next steps.</li>
</ol>
<br>
<a target="_blank" href="https://techgeeks.univ-guelma.dz/events/wS1bFZi7KaqrzAdO" class="btn" id="htb">join now</a>
<br>
</div>
<img src="./img/HT.jpg">
<div class="card__head">Hackathon</div>
</div>
<!-- Best idea -->
<div class="card" id="c2" >
<div class="comp-info" id="cib">
<h2>Call for Participation: AI Best Idea Competition at AI Day 2024</h2>
<p><b>Dear Students,</b></p>
<p>Are you passionate about artificial intelligence (AI) and brimming with innovative ideas? Here's your chance to showcase your creativity and entrepreneurial spirit at the AI Idea Competition, part of AI Day at the University of 8 May 1945 GUELMA!</p>
<br>
<p>We're excited to invite you to participate in this thrilling competition where you can pitch your AI-based ideas to a panel of esteemed judges and fellow students. Whether you have a groundbreaking concept or a visionary solution to a real-world problem, we want to hear from you!</p>
<p>Here's why you should participate:</p>
<ul>
<li>Opportunity to present your AI idea to industry experts and potential investors.</li>
<li>Chance to receive valuable feedback and guidance from experienced mentors.</li>
<li>Networking opportunities with peers and professionals in the AI and startup ecosystem.</li>
<li>Prizes and recognition for the best ideas.</li>
</ul>
<br>
<p>How to participate:</p>
<ol>
<li>Form a team or participate individually</li>
<li>Develop a compelling AI idea addressing a specific challenge or opportunity.</li>
<li>Prepare a concise pitch presentation outlining your idea, its potential impact, and your implementation plan. (In video format or PPT format)</li>
<li> Submit your entry. At the following link: <a href="http://events.univ-guelma.dz/ai/index.php">click_here</a></li>
<li> End the video format or PPT format if you have one to the following email: [email protected]</li>
<li> Selected teams/individuals will be invited to pitch their ideas live during AI Day, where winners will be announced and awarded.</li>
</ol>
<br>
<a target="_blank" href="http://events.univ-guelma.dz/ai/index.php" class="btn" id="bib">join now</a>
<br>
</div>
<img src="./img/BestIdea.jpg">
<div class="card__head">The Best idea</div>
</div>
<!-- Photo graphy -->
<div class="card" id="c3" >
<div class="comp-info" id="cib">
<h2>AI24 DAY: Photography and Video Editing Contest</h2>
<p>Who is the Best photographer and video editor? Find out on April 15th and 16th.</p>
<br>
<p>Capture the event's best moments and transform them into a stunning <b>1-3 minute video.</b> Wow</p>
<p>the jury with your video <b>alongside 5 compelling photos</b> that capture the essence of the event. Showcase your skills and seize the chance to win! The winner's video will be featured as <b>the official media coverage of AI24 day</b> on our social media platforms.
Ready your cameras! spots are limited
</p>
<p>Don't miss out, <b>registrations open on April, 8th</b></p>
<br>
<br>
<a target="_blank" href="https://techgeeks.univ-guelma.dz/events/sl3kbH5AwKxSTA0j" class="btn" id="bib">join now</a>
<br>
</div>
<img src="./img/photographers.jpg">
<div class="card__head">Photography Contest</div>
</div>
<!-- SolvIt -->
<div class="card" id="c4" >
<div class="comp-info" id="cib">
<p>“Solve It” Is a coding competition, featuring mini-coding problems, it is an event where participants engage in timed challenges to demonstrate their programming skills and problem-solving abilities.</p>
<h3>Competition Details</h3>
<p>Every student in the Department of Computer Science at the University of Guelma is eligible to participate (all levels)
The programming language used to solve the problems is the “ C programming language ”.
Participants are given a specific time to solve each problem. Points or rankings are awarded based on specific factors, including the correct answer to the question and the efficiency and speed of problem-solving.</p>
<p>How to participate:</p>
<ol>
<li>Create a team: Gather 2 participants for a collaborative effort. </li>
<li>For the registration , you need to head over to our website (Join Now ) and confirm your participation.</li>
<li>Shortlisted teams will receive detailed information via email, outlining the next steps.</li>
</ol>
<br>
<a target="_blank" href="https://techgeeks.univ-guelma.dz/events/hU4qDocMw4VuvJhE" class="btn" id="bib">join now</a>
<br>
</div>
<img src="./img/coding.jpg">
<div class="card__head">Solve It 2nd Edition</div>
</div>
</div>
</div>
</div>
<!--! ==================================================================================================== -->
<section class="slide-option">
<p class="text-blk section-head-text">
Partners
</p>
<p class="text-blk section-subhead-text">
Special Thanks to our Supporters
</p>
<div id="infinite" class="highway-slider">
<div class="container_sponsors highway-barrier" style="padding-bottom:20px">
<ul class="highway-lane">
<li class="highway-car"><a href="https://www.gkbeyondwords.com/en" target="_blank"><img src="./img/partners/1.png"width=300/></a></li>
<li class="highway-car"><a href="https://web.facebook.com/NigriAcademy" target="_blank"><img src="./img/partners/3.jpg" width=100/></a></li>
<li class="highway-car"><a href="https://code213.tech/" target="_blank"><img src="./img/partners/2.png"width=300/></a></li>
<li class="highway-car"><a href="https://web.facebook.com/diwaninformatiqueBOUCHBOUT" target="_blank"><img src="./img/partners/4.jpg" width=100/></a></li>
<li class="highway-car"><a href="https://www.gkbeyondwords.com/en" target="_blank"><img src="./img/partners/1.png"width=300/></a></li>
<li class="highway-car"><a href="https://web.facebook.com/NigriAcademy" target="_blank"><img src="./img/partners/3.jpg" width=100/></a></li>
<li class="highway-car"><a href="https://code213.tech/" target="_blank"><img src="./img/partners/2.png"width=300/></a></li>
<li class="highway-car"><a href="https://web.facebook.com/diwaninformatiqueBOUCHBOUT" target="_blank"><img src="./img/partners/4.jpg" width=100/></a></li>
<li class="highway-car"><a href="https://www.gkbeyondwords.com/en" target="_blank"><img src="./img/partners/1.png"width=300/></a></li>
<li class="highway-car"><a href="https://web.facebook.com/NigriAcademy" target="_blank"><img src="./img/partners/3.jpg" width=100/></a></li>
<li class="highway-car"><a href="https://code213.tech/" target="_blank"><img src="./img/partners/2.png"width=300/></a></li>
<li class="highway-car"><a href="https://web.facebook.com/diwaninformatiqueBOUCHBOUT" target="_blank"><img src="./img/partners/4.jpg" width=100/></a></li>
<li class="highway-car"><a href="https://www.gkbeyondwords.com/en" target="_blank"><img src="./img/partners/1.png"width=300/></a></li>
<li class="highway-car"><a href="https://web.facebook.com/NigriAcademy" target="_blank"><img src="./img/partners/3.jpg" width=100/></a></li>
<li class="highway-car"><a href="https://code213.tech/" target="_blank"><img src="./img/partners/2.png"width=300/></a></li>
<li class="highway-car"><a href="https://web.facebook.com/diwaninformatiqueBOUCHBOUT" target="_blank"><img src="./img/partners/4.jpg" width=100/></a></li>
</ul>
</div>
</div>
</section>
<!--! ==================================================================================================== -->
<div class="responsive-container-block outer-container">
<div class="responsive-container-block inner-container">
<p class="text-blk section-head-text">
Organizers
</p>
<p class="text-blk section-subhead-text">
__Tech-Geeks family__
</p>
<div class="responsive-container-block">
<!-- Samir Hallaci -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4D03AQELZyb5-UxZYg/profile-displayphoto-shrink_200_200/0/1702107873213?e=1718236800&v=beta&t=Q5-xo7eidOwfgci6VPBat2dmHZpVLseom50NAH6qeZg">
</div>
<p class="text-blk name">
Samir Hallaci
</p>
<p class="text-blk position">
Enseignant chercheur
</p>
<div class="social-media-links">
<a href="http://www.twitter.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-twitter.svg">
</a>
<a href="http://www.facebook.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-fb.svg">
</a>
<a href="http://www.instagram.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-insta.svg">
</a>
<a href="http://www.gmail.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-mail.svg">
</a>
</div>
</div>
</div>
<!-- Zineddine Kouahla -->
<!-- Wassim Meguallati -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4E03AQF9wwAWeApsgA/profile-displayphoto-shrink_200_200/0/1709835603676?e=1718236800&v=beta&t=Vr8R2NSe80E7Y2Bj9tFztCRlHm1_HewISKjaBPyE1Ac">
</div>
<p class="text-blk name">
Wassim Meguellati
</p>
<p class="text-blk position">
Leader of T.G Club
</p>
<div class="social-media-links">
<a href="http://www.twitter.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-twitter.svg">
</a>
<a href="http://www.facebook.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-fb.svg">
</a>
<a href="http://www.instagram.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-insta.svg">
</a>
<a href="http://www.gmail.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-mail.svg">
</a>
</div>
</div>
</div>
<!-- ME -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4D03AQFtibRUEmafLQ/profile-displayphoto-shrink_200_200/0/1696620607715?e=1718236800&v=beta&t=yTVE2xheYjwKoVGGPYwzrm-uymbA0zbOOddR3T2dhaA">
</div>
<p class="text-blk name">
Ali.D.E Bouakaz
</p>
<p class="text-blk position">
T.G Dev-Team
</p>
<div class="social-media-links">
<a href="http://www.twitter.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-twitter.svg">
</a>
<a href="http://www.facebook.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-fb.svg">
</a>
<a href="http://www.instagram.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-insta.svg">
</a>
<a href="http://www.gmail.com/" target="_blank">
<img src="https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/gray-mail.svg">
</a>
</div>
</div>
</div>
<!-- Adam Kolli -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4E03AQEUXN-iBEa30g/profile-displayphoto-shrink_200_200/0/1708703609710?e=1718236800&v=beta&t=EOjC-LF8G5-JraEoYCUXBBCbFTpMjk4PGX1vCw42OsI">
</div>
<p class="text-blk name">
Adam Kolli
</p>
<p class="text-blk position">
Design-team
</p>
</div>
</div>
<!-- Amar A.eldjalil Bouakaz -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4E03AQEo6uUCJ9WDuw/profile-displayphoto-shrink_200_200/0/1709392538549?e=1718236800&v=beta&t=a_Ai00s20ehqjyjHKHKI1I6N06Q2jEJKgKo0xM6Npkw">
</div>
<p class="text-blk name">
Amar A.eldjalil Bouakaz
</p>
<p class="text-blk position">
T.G Dev-Team
</p>
</div>
</div>
<!-- Abdeladim Wassim -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://scontent.faae1-1.fna.fbcdn.net/v/t39.30808-6/401848706_884177456602382_8455113785089811841_n.jpg?stp=cp6_dst-jpg&_nc_cat=101&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeFQ4Kwpmuv0rHbbyzphC9W_fky0d_e4_hF-TLR397j-ETieF1wJAmDgUpEnbzp1-1ic1W-p39lQ_owpSMH4D0bt&_nc_ohc=mNdPI97wCjQAb5zWk56&_nc_zt=23&_nc_ht=scontent.faae1-1.fna&oh=00_AfAycNttjFyx28DIKYExB9LhhKiubY-ruj8jMiS8M59iAQ&oe=661918F2">
</div>
<p class="text-blk name">
Abdeladim Wassim
</p>
<p class="text-blk position">
T.G Media-Team
</p>
</div>
</div>
<!-- Amdjed Mrah -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4E03AQGaJoyQnBA58g/profile-displayphoto-shrink_200_200/0/1702646974294?e=1718236800&v=beta&t=bDViY1ngnC2zOynJR29kUGnHJhN3vZME6vPS-2pJaKc">
</div>
<p class="text-blk name">
Amdjed Mrah
</p>
<p class="text-blk position">
T.G Dev-Team
</p>
</div>
</div>
<!-- Moudjari Abdelrahmane -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4D03AQG7icBfVJrWHg/profile-displayphoto-shrink_200_200/0/1709833775135?e=1718236800&v=beta&t=egKEa5ROZQIlELzrsl-p-EEP59qz14UYDe6TCUHTkFY">
</div>
<p class="text-blk name">
Moudjari Abdelrahmane
</p>
<p class="text-blk position">
T.G Media-Team
</p>
</div>
</div>
<!-- Islem Haddada -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4E03AQFHkEDNQjTBxA/profile-displayphoto-shrink_200_200/0/1702045706343?e=1718236800&v=beta&t=gj5Y98XT3AvN_8YUPxZTFdMtKveIBlEn6FnMZEnfObI">
</div>
<p class="text-blk name">
Mohamed fakher el Islem Haddada
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<!-- Abdelouadoud Brg -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D5603AQHR7dSjCnqXNA/profile-displayphoto-shrink_200_200/0/1701444434610?e=1718236800&v=beta&t=j4FJUQFxmwmacSTdNQbmiQZ5j22u8JbC-JCesFFnxQI">
</div>
<p class="text-blk name">
Abdelouadoud Boubergoug
</p>
<p class="text-blk position">
T.G Media-Team
</p>
</div>
</div>
<!-- Farah El -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://scontent.faae1-1.fna.fbcdn.net/v/t39.30808-6/428479572_363339826613587_6518456601005713271_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeHLYG1vUFYEjznKQvAEm8iQbU7mJTWZr-xtTuYlNZmv7BG1QaoN2POS6z-CH-UBvpSR6ErpB6f9Xg4Vsrh00XO3&_nc_ohc=qVf7ch6uz4AAb6hw6ac&_nc_zt=23&_nc_ht=scontent.faae1-1.fna&oh=00_AfBpNYSD_dO09TfvcrHwNheH3z5X_JlvV-SH8fJ3W9hB_Q&oe=66193C9A">
</div>
<p class="text-blk name">
Farah Kouasmi
</p>
<p class="text-blk position">
T.G Media-Team
</p>
</div>
</div>
<!-- Hadjer Hanani -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="./img/avatar.png">
</div>
<p class="text-blk name">
Hadjer Hanani
</p>
<p class="text-blk position">
T.G 3D-Team
</p>
</div>
</div>
<!-- Dji Hane -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" id="d-img" src="https://scontent.faae1-2.fna.fbcdn.net/v/t39.30808-6/417470319_122135486648052032_373597405279176652_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeGfy7hnAnf8LM9ClnzDKLsH_-Txfl7FwLz_5PF-XsXAvLv5h0QQqHCjBDJwvvH-ncVLPFQILONYdzLetL2REUtw&_nc_ohc=TWQoounJ4M0Ab4IeJgm&_nc_zt=23&_nc_ht=scontent.faae1-2.fna&oh=00_AfDq9wNBgK-mtuWUWjcv-gUDnnjFI0SUJ7qOoB_e-5RWIQ&oe=66191887">
</div>
<p class="text-blk name">
Nasrallah Djihane
</p>
<p class="text-blk position">
T.G Media-Team
</p>
</div>
</div>
<!-- Sarah Dje -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://scontent.faae1-2.fna.fbcdn.net/v/t39.30808-6/311623986_833653004739256_1007358506981080776_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeHYFxIRgTmH7luQMFdQJvCFOX8FDyM07KU5fwUPIzTspUO8U_fLSKGx9Mt1AhGA8XYHpEhirD6jS7nBWRxiwYh0&_nc_ohc=vaX89uFhFzIAb6IjSpk&_nc_zt=23&_nc_ht=scontent.faae1-2.fna&oh=00_AfDSQcDj9S9C7Nu3pRit6bUhU4qBuz3TH_d6M3pkRvKhhg&oe=661917A6">
</div>
<p class="text-blk name">
Sarah Djerrab
</p>
<p class="text-blk position">
T.G Disign-Team
</p>
</div>
</div>
<!-- Fairouz -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://scontent.faae1-1.fna.fbcdn.net/v/t39.30808-6/432775324_938285764601129_321860647329245818_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeGbp7HWKaqD9WsGTTOFY9uf4vxxpVcVQYHi_HGlVxVBgcDRuXVwB2tySS_cy6YKtquu7wJD-3Wcvz6-L9ynkhOf&_nc_ohc=Feqwb4jGYp4Ab64mbYN&_nc_zt=23&_nc_ht=scontent.faae1-1.fna&oh=00_AfAChzRr4on3RYNagOj8lFgC3_tJu6gqD6uvNDy28B3yZQ&oe=66193033">
</div>
<p class="text-blk name">
Fairouz Cheikh Bassa
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<!-- khaoula Merah -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://media.licdn.com/dms/image/D4E03AQE5HLIAVNwh0g/profile-displayphoto-shrink_200_200/0/1706443731053?e=1718236800&v=beta&t=txtrpH1Y_YfxXRlVOr_TB4c0sw-EdZB3RsWSyaOIP-Y">
</div>
<p class="text-blk name">
Khaoula Merah
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<!-- Sanouma Bgh -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="./img\avatar.png">
</div>
<p class="text-blk name">
Tasnim Bagha
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<!-- Meys Bou -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="./img/avatar.png">
</div>
<p class="text-blk name">
Meys Bouhafer
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<!-- Roufia Afiane -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" id = "r-img"src="https://scontent.faae1-2.fna.fbcdn.net/v/t39.30808-6/351341772_1295261877741902_535262394983690779_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeHg5-zz3glfmtjjJQpiHspK80zlAcqQkyvzTOUBypCTK6_BBwXw-aRWkM5huJR7QoOW0W0eoPC1ohbxw58Dz0De&_nc_ohc=5MR_Y3nqPY8Ab4z0AdV&_nc_zt=23&_nc_ht=scontent.faae1-2.fna&oh=00_AfCIVtj9JIRReB1PmaQy3-U-W8Qiiw4W6Ib87mQsgXQE-g&oe=66191E99">
</div>
<p class="text-blk name">
Roufia Afiane
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<!-- Hanna Bouhouta -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="./img/avatar.png">
</div>
<p class="text-blk name">
Hanna Bouhouita
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="./img/avatar.png">
</div>
<p class="text-blk name">
Haine Merouane
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="./img/avatar.png">
</div>
<p class="text-blk name">
Imen Ourradji
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<!-- Amdjed Bouzid -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="https://scontent.falg7-2.fna.fbcdn.net/v/t39.30808-6/315735245_920689899335748_5399628026658223272_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeHvz6OUqsvYcM8vc4p2v81E-G4Y4FMiF3P4bhjgUyIXc2Y9nufnjmxH52gcpUZ_v6UluVexyorYNU7cRIzRfxQv&_nc_ohc=QJldzt_T430Ab6QF9iC&_nc_ht=scontent.falg7-2.fna&oh=00_AfDDWILuK4tKsIUtlMTZD4pgER-sFtnIgTUIbRtIWMg-oA&oe=6619BF10">
</div>
<p class="text-blk name">
Amdjed Bouzid
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
<!-- Bezazi Ahmed -->
<div class="responsive-cell-block wk-desk-3 wk-ipadp-3 wk-tab-6 wk-mobile-12 team-card-container">
<div class="team-card">
<div class="img-wrapper">
<img class="team-img" src="./img/avatar.png">
</div>
<p class="text-blk name">
Bezazi Ahmed
</p>
<p class="text-blk position">
Organizer
</p>
</div>
</div>
</div>
</div>
</div>
<!--! ==================================================================================================== -->
<div class="footer">
<div class="f1">
<p id="cb">Created by:</p>
<img class="logo" src="./img/TG-logo-l-2.png" alt="logo-TG" id="logo-TG-ft">
</div>
<!-- <img class="logo" src="./img/logologo.png" alt="logo" id="logo-AI"> -->
<div class="f2">
Contact us:
<div>
<a target="_blank" href="https://techgeeks-club.github.io/links/" class="lt">Linktree</a>
</div>
</div>
<div class="f3">
© 2024 TechGeeks Club. All Rights Reserved.
</div>
</body>
</html>