-
Notifications
You must be signed in to change notification settings - Fork 0
/
Committees.html
1098 lines (1073 loc) · 37 KB
/
Committees.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="16x16"
href="imgs/titleCatLogo.svg"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lobster+Two&family=Poppins:wght@400;500&family=Raleway:wght@700&display=swap"
rel="stylesheet"
/>
<link href="./CSS/Normalize.css" rel="stylesheet" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.1/css/hover.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./CSS/style.css" />
<link rel="stylesheet" href="./CSS/media.css" />
<title>Committees</title>
</head>
<body>
<!--start navbar-->
<nav class="navbar navbar-expand-lg navbar-light sticky" id="nav">
<div class="container-lg">
<a class="navbar-brand" href="index.html"
><img src="./imgs/catBlack.svg" alt="navLogo"
/></a>
<button
class="navbar-toggler topmenu"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarText"
aria-controls="navbarText"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mx-auto mb-2 mb-lg-0">
<li
class="
nav-item
align-items-lg-center
d-flex
justify-content-lg-center
"
>
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li
class="
nav-item
align-items-lg-center
justify-content-lg-center
d-flex
"
>
<a class="nav-link" href="About.html">About</a>
</li>
<li
class="
nav-item
align-items-lg-center
d-flex
justify-content-lg-center
"
>
<a class="nav-link" href="Events.html">Events</a>
</li>
<li
class="
nav-item
align-items-lg-center
d-flex
justify-content-lg-center
"
>
<a class="nav-link" href="https://blog.catreloaded.org"
>CATazine</a
>
</li>
<li
class="
nav-item
align-items-lg-center
d-flex
justify-content-lg-center
"
>
<a class="nav-link active" href="Committees.html">Committees</a>
</li>
<li
class="
nav-item
align-items-lg-center
d-flex
justify-content-lg-center
"
>
<a class="nav-link" href="ContactUs.html">Contact Us</a>
</li>
<li class="nav-item d-lg-none">
<span class="navbar-text d-grid gap-2 mx-2 newsletter">
<button
type="button"
class="btn btn-large"
data-bs-toggle="modal"
data-bs-target="#newsletterModal"
>
Be A CATian >
</button>
</span>
</li>
</ul>
<span
class="navbar-text d-grid gap-2 mx-2 newsletter d-none d-lg-grid"
>
<!-- temporary instead of newsletter modal -->
<button
type="button"
class="btn btn-large hvr-shutter-in-vertical"
data-bs-toggle="modal"
data-bs-target="#newsletterModal"
>
Be A CATian >
</button>
</span>
</div>
</div>
</nav>
<!--end navbar-->
<!--Aboutus Header-->
<header class="about">
<div class="container">
<div class="row">
<div
class="
col-5 col-sm-6
d-flex
flex-column
gap-2
justify-content-center
"
>
<img
class="img-responsive align-self-center wow animate__slideInDown"
src="./imgs/catLogo.svg"
alt="catlogo"
data-wow-duration="1.5s"
/>
<h1 class="wow animate__slideInUp" data-wow-duration="1.5s">
<span>Committees</span>
</h1>
</div>
<div class="col-6 d-flex flex-column gap-2 justify-content-center">
<img
class="
img-responsive
align-self-center
img-fluid
wow
animate__slideInUp
"
src="./imgs/undraw_teamwork_hpdk.svg"
alt="..."
data-wow-duration="1.5s"
/>
</div>
</div>
</div>
</header>
<!--section of non-technical -->
<section class="non-technical">
<div class="container">
<div class="row justify-content-center align-items-center gap-0">
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#PR"
>
<h3 class="pt-4 pb-2">PR&FR</h3>
<img
src="./imgs/pr&fr.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
active
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#Hr"
>
<h3 class="pt-4 pb-2">HR</h3>
<img
src="./imgs/hr.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#Logistics"
>
<h3 class="pt-4 pb-2">Logistics</h3>
<img
src="./imgs/logistic.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#Media"
>
<h3 class="pt-4 pb-2">Media</h3>
<img
src="./imgs/media.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
</div>
<div class="row content">
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s "
id="PR"
>
<h2>PR&FR Circle</h2>
<p>
Responsible for team relations and the process of collecting
financial contributions from Resources available to them,
gathering supporters and targeting a broad base of individuals
who believe in your vision.
</p>
</div>
</div>
<div class="col-12">
<div
class="collapse show wow animate__fadeIn"
data-wow-duration="1.5s"
id="Hr"
>
<h2>HR Circle</h2>
<p>
HR, or Human Resources, is responsible for finding, screening,
recruiting, and training applicants, and planning activities
that help members work together and know each other better, or
activities that help improve members’ skills further. As well as
dealing with any internal problems that may arise between
members.
</p>
</div>
</div>
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s "
id="Logistics"
>
<h2>Logistics Circle</h2>
<p>
The logistics committee is the front of the team primarily
responsible for organizing any event inside and outside the team
in line with the vision and mission of the team as a whole, as
well as with the goal of the event, in order to make it appear
in the best possible way.Communicate with all committees to know
their needs and take them into account in the event plan.
</p>
</div>
</div>
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s "
id="Media"
>
<h2>Media Circle</h2>
<p>
Social media is one of the most important parts of any company
or team, as it is the face of the team digitally. Through posts
or videos you can learn a lot about the group and the content
they intend to deliver. Social media has three main branches,
content creation, graphics and video editing. A place where you
can create things that you know people will enjoy.
</p>
</div>
</div>
</div>
</div>
</section>
<!--section of non-technical -->
<section class="technical">
<h2 class="text-center wow animate__fadeIn" data-wow-duration="1.5s">
<span>CAT</span> Technical Circles
</h2>
<div class="container">
<div class="row cards justify-content-center align-items-center gap-0">
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#frontEnd"
>
<h3 class="pt-4 pb-2">Front-End</h3>
<img
src="./imgs/front-end.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
active
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#backEnd"
>
<h3 class="pt-4 pb-2">Back-End</h3>
<img
src="./imgs/back-end.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
ui
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#UI"
>
<h3 class="pt-4 pb-3">UI/UX</h3>
<img
src="./imgs/graphic.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
game
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#Game"
>
<h3 class="pt-4 pb-2">Game Development</h3>
<img
src="./imgs/Component 86 – 1.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
</div>
<div class="row content">
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s"
id="frontEnd"
>
<h2>Front-End Circle</h2>
<p>
The Front-End is one of the branches of Web development, which
is divided into (Front-end & Back-end). It is also the User
Interface which the user deals with when visiting a website.The
front- end deals with the client - side of the website, unlike
the back - end which deals with the server - side of the
website.
</p>
<a
class="btn cat-outline-cat-button"
target="_blank"
href="https://github.com/CATReloaded/CATReloaded-Circles-Roadmaps/tree/master/cat-frontend-circle-road-map-master"
>
Roadmap</a
>
</div>
</div>
<div class="col-12">
<div
class="collapse show wow animate__fadeIn"
data-wow-duration="1.5s"
id="backEnd"
>
<h2>Back-End Circle</h2>
<p>
After designing a page or an application we only have a pic but
we cannot move in the browser , sell ,buy or just login so We
need to use the backend It refers to parts of a computer
application or a program's code that allow it to operate and
that cannot be accessed by a user. The back end is also called
the data access layer of software or hardware and includes any
functionality that needs to be accessed and navigated to by
digital means.
</p>
<a
class="btn cat-outline-cat-button"
target="_blank"
href="https://github.com/CATReloaded/CATReloaded-Circles-Roadmaps/tree/master/CAT-Back-endRoadmap-main"
>
Roadmap</a
>
</div>
</div>
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s "
id="UI"
>
<h2>UI/UX</h2>
<p>
Have you ever seen a picture and kept thinking, How was this
design made?What is the idea of this design ? How much does he
develop himself to reach this level ? This makes us know graphic
design, which is a visual contact the graphic designer
communicates certain ideas or messages in a visual way.These
visuals can be as simple as a business logo, or as complex as
page layouts, via programs like Photoshop, illustrator, XD that
help him control images, fonts, colors, shapes and sizes.
</p>
<a
class="btn cat-outline-cat-button"
target="_blank"
href="https://github.com/refaat66/UIX-Roadmap"
>
Roadmap</a
>
</div>
</div>
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s"
id="Game"
>
<h2>Game Development Circle</h2>
<p>
Game development isn't about writing code; it's about creating a
piece of art that helps people enjoy their free time. A game
developer could be a programmer, a digital artist, or maybe a
gamer who enjoys video games so much that he decides to create
his own games.If you are into game development, we are here to
help you take the first steps and design your first video game,
and make Easter eggs of your own.
</p>
<a
class="btn outline-cat-button"
target="_blank"
href="https://github.com/Samboy275/Game-Cirlcle-Road-Map/blob/main/RoadMap.md"
>
Roadmap
</a>
</div>
</div>
</div>
<div class="row cards justify-content-center align-items-center gap-0">
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#android"
>
<h3 class="pt-4 pb-2">Android</h3>
<img
src="./imgs/Android.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#flutter"
>
<h3 class="pt-4 pb-2">Flutter</h3>
<img
src="./imgs/flutter.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#ios"
>
<h3 class="pt-4 pb-2">iOS</h3>
<img
src="./imgs/ios.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#security"
>
<h3 class="pt-4 pb-2">CyberSecurity</h3>
<img
src="./imgs/security.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
</div>
<div class="row content">
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s"
id="android"
>
<h2>Android Circle</h2>
<p>
With over 3 billion Android devices among (Smartphones, TVs,
Watches, Cars, and more) in the hands of 2.5 billion Android
users, Android has become the most used operating system for
smartphones so we will help you glide over this enormous world
by learning how to make apps for the people inside.
</p>
<a
class="btn cat-outline-cat-button"
target="_blank"
href="https://github.com/Mohannad-El-Sayeh/Android-Roadmap"
>
Roadmap</a
>
</div>
</div>
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s"
id="flutter"
>
<h2>Flutter Circle</h2>
<p>
Let me tell you something,if you have a product,Why should you
write 2 codebases for Android & IOS, ha? Use FLUTTER
instead.Flutter is a free and open- source UI toolkit created by
Google.It allows you to create fast, beautiful, natively
compiled applications for mobile, web, and desktop with only one
codebase.
</p>
<a
class="btn cat-outline-cat-button"
target="_blank"
href="https://github.com/CATReloaded/CATReloaded-Circles-Roadmaps/tree/master/Flutter-Roadmap-main"
>
Roadmap</a
>
</div>
</div>
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s "
id="ios"
>
<h2>iOS Circle</h2>
<p>
iOS is the operating system used on Apple products, such as the
iPhone, iPad, and iPod touch.It is the world's second-most
widely installed mobile operating system, after Android.
</p>
<a
class="btn cat-outline-cat-button"
target="_blank"
href="https://github.com/CATReloaded/CATReloaded-Circles-Roadmaps/tree/master/iOS-Circle-CAT-Reloaded-Roadmap-main"
>
Roadmap</a
>
</div>
</div>
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s"
id="security"
>
<h2>Security Development Circle</h2>
<p>
Cybersecurity is the practice of protecting systems, networks,
and programs from digital attacks. It's one of our technical
circles that contains three branches: (Reverse, Network
security, and Penetration testing).The reverse is the process of
analyzing functions and information flow so that functionality
and behavior can be understood.Network security aims at
protecting a computer network from intruders, including both
wired and wireless(Wi- Fi) connections.Penetration testing, also
known as a pen test, is a simulated cyberattack against your
computer system to check for exploitable vulnerabilities.
</p>
<a
class="btn outline-cat-button"
target="_blank"
href="https://github.com/CATReloaded/CATReloaded-Circles-Roadmaps/tree/master/CAT-Reloaded-Cyber-Security-Cirlcle-Road-Map-main"
>
Roadmap
</a>
</div>
</div>
</div>
<div class="row cards justify-content-center align-items-center gap-0">
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#computerscience"
>
<h3 class="pt-4 pb-2">Computer Science</h3>
<img
src="./imgs/front-end.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
<div class="col-6 col-md-3">
<div
class="
card
justify-content-center
align-items-center
d-flex
flex-column
wow
animate__fadeIn
"
data-wow-duration="1.5s"
data-bs-target="#datascience"
>
<h3 class="pt-4 pb-2">Data Science</h3>
<img
src="./imgs/back-end.svg"
class="img-responsive img-fluid"
alt="..."
/>
</div>
</div>
</div>
<div class="row content">
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s"
id="computerscience"
>
<h2>Computer Science Circle</h2>
<p>
The CS fundamentals are the first stair in CS stairs. It will
help you to understand how the computer works, how to deal with
data, how to deal with code and many other things you should
know to go freely in your career. Whatever the CS technology you
choose to learn, you need these fundamentals. Many people who
decided to start directly learning one of CS technologies are
suffering from a lack of some skills and information and they
waste their time to go back and learn what they need and the
process is repeated continuously.
</p>
<a
class="btn outline-cat-button"
target="_blank"
href="https://github.com/CATReloaded/CATReloaded-Circles-Roadmaps/tree/master/CAT-CS-Road_map-master"
>
Roadmap</a
>
</div>
</div>
<div class="col-12">
<div
class="collapse wow animate__fadeIn"
data-wow-duration="1.5s"
id="datascience"
>
<h2>Data Sience Circle</h2>
<p>
Learning fundamentals of Math, Probability, and Statistics with
a programming language like Python is the gate to knowing what
Data Science is.From one level to another you will go deeper,
branch out in more critical and essential topics and go more
advanced in technologies in Machine Learning like Python with
different libraries, SQL and DataBase, APIs, Tensorflow.
</p>
<a
class="btn outline-cat-button"
target="_blank"
href="https://github.com/CATReloaded/CATReloaded-Circles-Roadmaps/tree/master/Data-Science-Circle-RoadMap-2020-master"
>
Roadmap</a
>
</div>
</div>
</div>
</div>
</section>
<!--footer-->
<footer>
<div class="container">
<div class="row d-flex justify-content-center flex-wrap">
<div class="col-md-3 logo pb-2 justify-content-center d-flex">
<img
src="./imgs/navLogo.svg"
class="img-responsive img-fluid"
alt="footerLogo"
/>
</div>
<div class="col-md-3 py-2">
<h3><i class="fas fa-map-marker-alt"></i> LOCATION</h3>
<p>Faculty of Engineering, Mansoura University, Dakhliya, Egypt</p>
</div>
<div class="col-md-3 col-sm-4 px-3 col-6 px-lg-0 py-2">
<h3 class="text-center">ANNUAL PARTNER</h3>
<ul
class="list-unstyled d-flex justify-content-center gap-1 flex-row"
>
<li>
<img
src="./imgs/triago.png"
class="img-responsive img-fluid"
alt="sposnsor"
/>
</li>
<li>
<img
src="./imgs/sponsers-logos/optimous.png"
class="img-responsive img-fluid"
alt="sponsor"
/>
</li>
</ul>
</div>
<div class="col-md-3 py-2 px-3 px-lg-0 col-5 col-sm-4">
<h3 class="text-center">FOLLOW US</h3>
<ul
class="list-unstyled d-flex gap-2 flex-row justify-content-center"
>
<li>
<a href="https://www.facebook.com/CATReloaded" target="_blank"
><i class="fab fa-facebook-f"></i
></a>
</li>
<li>
<a href="https://twitter.com/CATReloaded" target="_blank"
><i class="fab fa-twitter"></i
></a>
</li>
<li>
<a
href="https://www.youtube.com/user/C4TReloaded"
target="_blank"
><i class="fab fa-youtube"></i
></a>
</li>
<li>
<a href="https://github.com/CATReloaded" target="_blank"
><i class="fab fa-github"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/company/cat-reloaded/"
target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</li>
</ul>
</div>
</div>
</div>
<div class="copyRight text-center">
CopyRight © 2021 All Rights Reserved to CATReloaded Technical
</div>
</footer>
<!--newsletter Modal-->
<div
class="modal fade"
id="newsletterModal"
tabindex="-1"
aria-labelledby="ModalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<button
type="button"
class="btn-close align-self-end"
data-bs-dismiss="modal"
aria-label="Close"
></button>
<div class="row">
<div
class="
col-md-6 col-sm-6 col-lg-6
align-items-center
justify-content-center
"
>
<img
src="imgs/subscribe.svg"
class="img-fluid img-responsive"
alt="modalSubscribeVector"
/>
</div>
<div class="col-md-6 col-sm-6 col-lg-6 content">
<div class="modal-header">
<h5 class="modal-title" id="ModalLabel">
Subscribe to our Newsletter!
</h5>
</div>
<div class="modal-body">
<p>
We'll informed you with our new blogs and the latest updates!
</p>
<form class="row g-3">
<div>
<input
type="text"
class="form-control"
id="username"
name="username"
value=""
placeholder="Name"
/>
</div>
<div class="">