-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube.html
771 lines (744 loc) · 34.3 KB
/
youtube.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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<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" />
<meta
name="description"
content="This is a meta description sample. We can add up to 160 characters." />
<title>اليوتيوب | اللغة الفرنسية</title>
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet" />
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet" />
<link
rel="stylesheet"
href="assets/vendor/bootstrap-icons/bootstrap-icons.min.css" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top headerBgWhite">
<div class="container d-flex justify-content-between align-items-center">
<div class="main-menu">
<button
class="btn py-1 px-2 rounded bg-white"
type="button"
data-bs-toggle="offcanvas"
data-bs-target="#offcanvasWithBothOptions"
aria-controls="offcanvasWithBothOptions">
<i class="bi bi-list"></i>
</button>
<div
class="offcanvas offcanvas-start"
data-bs-scroll="true"
tabindex="-1"
id="offcanvasWithBothOptions"
aria-labelledby="offcanvasWithBothOptionsLabel"
style="height: 100vh">
<div
class="offcanvas-header pb-2 px-0 d-flex justify-content-between align-items-start">
<button
type="button"
class="btn-close mx-2"
data-bs-dismiss="offcanvas"
aria-label="Close"></button>
<h5
class="offcanvas-title d-flex flex-column align-items-center w-100 px-0"
id="offcanvasWithBothOptionsLabel">
<span class="fs-6 w-100 d-flex justify-content-center mx-auto">
En français facile | الفرنسيه ببساطه
</span>
<a href="" class="get-book-btn mt-2"> احجز الأن! </a>
</h5>
</div>
<div class="offcanvas-body p-0">
<nav
id="navbar"
class="navbar pe-0"
style="background-color: #ede7ff; border-radius: 0.2rem">
<ul class="navbar-nav pe-0">
<li class="nav-item py-1">
<a class="nav-link scrollto px-3 py-2" href="index.html">
الرئيسية
</a>
</li>
<li class="nav-item py-1">
<a class="nav-link scrollto px-3 py-2" href="aboutUs.html">
تعرف علينا
</a>
</li>
<li class="nav-item py-1 dropdown">
<a
class="nav-link dropdown-toggle px-3 py-2"
href=""
role="button"
data-bs-toggle="dropdown"
aria-expanded="false">
الدروس
</a>
<ul class="dropdown-menu">
<li>
<a
class="dropdown-item scrollto active"
aria-current="page"
href="#youtube"
>اليوتيوب</a
>
</li>
<li>
<a class="dropdown-item scrollto" href="courses.html"
>الدروس المجانية</a
>
</li>
<li>
<hr class="dropdown-divider" />
</li>
<li>
<p
class="d-flex align-items-center justify-content-center mb-0">
جملة تعريفية
</p>
</li>
</ul>
</li>
<li class="nav-item py-1">
<a class="nav-link scrollto px-3 py-2" href="honor.html">
لوحة الشرف
</a>
</li>
<li class="nav-item py-1">
<a class="nav-link scrollto px-3 py-2" href="parents.html">
أولياء الأمور
</a>
</li>
<li class="nav-item py-1 dropdown">
<a
class="nav-link dropdown-toggle px-3 py-2"
href=""
role="button"
data-bs-toggle="dropdown"
aria-expanded="false">
الطالب
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item scrollto" href="">
تقييم الطالب
</a>
</li>
<li>
<a class="dropdown-item scrollto" href=""> رابط اخر </a>
</li>
<li>
<hr class="dropdown-divider" />
</li>
<li>
<p
class="d-flex align-items-center justify-content-center mb-0">
جملة تعريفية
</p>
</li>
</ul>
</li>
</ul>
</nav>
<div id="footer-header">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-6 footer-contact mb-4">
<h3>أ/ مصطفى فايز</h3>
<h5>اللغة الفرنسية</h5>
<p>
13 شارع محمود لطفي <br />
الاسكندرية <br />
جمهورية مصر العربية <br /><br />
<strong>تليفون:</strong> +1 5589 55488 55<br />
<strong>بريد الكتروني:</strong> info@example.com<br />
</p>
</div>
<div class="col-lg-6 col-md-6 footer-links mb-4">
<h4>روابط مهمة</h4>
<ul>
<li>
<i class="bi bi-chevron-left"></i>
<a href="index.html">الرئيسية</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="aboutUs.html">تعرف علينا</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمات</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">شروط الاستخدام</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">سياسة الخصوصية</a>
</li>
</ul>
</div>
<div class="col-lg-6 col-md-6 footer-links mb-4">
<h4>خدماتنا</h4>
<ul>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الأولى</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الثانية</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الثالثة</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الرابعة</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الخامسة</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-3 text-black">
<div class="ms-md-auto text-center">
<div class="copyright">
© حقوق النشر
<strong><span>المعلم</span></strong>
| جميع الحقوق محفوظة
</div>
<div class="credits">
Designed by
<a href="https://khaledswidan.github.io/My-Profile/">
Bohemian Coder
</a>
</div>
</div>
<div
class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="" class="twitter mt-2" aria-label="Twitter">
<i class="bi bi-twitter"></i>
</a>
<a href="" class="facebook mt-2" aria-label="Facebook">
<i class="bi bi-facebook"></i>
</a>
<a href="" class="instagram mt-2" aria-label="Instagram">
<i class="bi bi-instagram"></i>
</a>
<a href="" class="globe2 mt-2" aria-label="Globe2">
<i class="bi bi-globe2"></i>
</a>
<a href="" class="whatsapp mt-2" aria-label="Whatsapp">
<i class="bi bi-whatsapp"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<a href="index.html" class="text-muted">
<span class="d-inline-block text-center text-black fw-bolder">
En français facile | الفرنسيه ببساطه
</span>
</a>
<a href="" class="get-book-btn"> احجز الأن! </a>
</div>
</header>
<!-- End Header -->
<main id="youtube">
<div class="breadcrumbs" data-aos="fade-in"></div>
<!-- End Breadcrumbs -->
<!-- ======= Popular Courses Section ======= -->
<section class="courses section-bg">
<div class="container" data-aos="fade-up">
<div class="section-title">
<h2>اليوتيوب</h2>
<p>
وسأعرض لك التفاصيل لتكتشف حقيقة وأساس تلك السعادة البشرية، فلا أحد
يرفض أو يكره أو يتجنب الشعور بالسعاد
</p>
</div>
<ul
id="courses-filters"
class="d-flex justify-content-center"
data-aos="fade-up"
data-aos-delay="100">
<li data-filter="*" class="filter-active">الكل</li>
<li data-filter=".filter-1st">الصف الأول الثانوى</li>
<li data-filter=".filter-2nd">الصف الثانى الثانوى</li>
<li data-filter=".filter-3rd">الصف الثالث الثانوى</li>
</ul>
<div
class="row courses-container"
data-aos="fade-up"
data-aos-delay="200">
<div class="col-lg-4 col-md-6 course-item my-2 filter-1st">
<div class="course-content">
<div>
<h3>
الصف الأول الثانوي<br />
<span class="fs-6">الدرس الأول</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 course-item my-2 filter-3rd">
<div class="course-content">
<div>
<h3>
الصف الثالث الثانوى<br />
<span class="fs-6">الدرس الثالث</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 course-item my-2 filter-1st">
<div class="course-content">
<div>
<h3>
الصف الأول الثانوى<br />
<span class="fs-6">الدرس الرابع</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 course-item my-2 filter-2nd">
<div class="course-content">
<div>
<h3>
الصف الثانى الثانوى<br />
<span class="fs-6">الدرس الثانى</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 course-item my-2 filter-2nd">
<div class="course-content">
<div>
<h3>
الصف الثانى الثانوى<br />
<span class="fs-6">الدرس الأول</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 course-item my-2 filter-3rd">
<div class="course-content">
<div>
<h3>
الصف الثالث الثانوى<br />
<span class="fs-6">الدرس الثانى</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 course-item my-2 filter-2nd">
<div class="course-content">
<div>
<h3>
الصف الثانى الثانوى<br />
<span class="fs-6">الدرس الثالث</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 course-item my-2 filter-2nd">
<div class="course-content">
<div>
<h3>
الصف الثانى الثانوى<br />
<span class="fs-6">الدرس الرابع</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 course-item my-2 filter-3rd">
<div class="course-content">
<div>
<h3>
الصف الثالث الثانوى<br />
<span class="fs-6">الدرس الرابع</span>
</h3>
<p>
لكن لا بد أن أوضح لك أن كل هذه الأفكار المغلوطة حول استنكار
النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك التفاصيل لتكتشف
حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو يكره أو
يتجنب الشعور بالسعادة، ولكن بفضل هؤلاء الأشخاص الذين لا
يدركون بأن السعادة لا بد أن نستشعرها بصورة أكثر عقلانية
ومنطقية
</p>
</div>
<div
class="course-video d-flex justify-content-between align-items-center">
<a
href="https://www.youtube.com/watch?v=9VJJSCVH_Wk"
class="glightbox btn-watch-video">
<i class="bi bi-play-circle"></i>
<span>تصفح الدرس</span>
</a>
<div class="course-video-rank d-flex align-items-center">
<i class="bi bi-person-video3"></i>
50
<i class="bi bi-heart-fill"></i>
65
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Popular Courses Section -->
</main>
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact mb-4">
<h3>أ/ مصطفى فايز</h3>
<h5>اللغة الفرنسية</h5>
<p>
13 شارع محمود لطفي <br />
الاسكندرية <br />
جمهورية مصر العربية <br /><br />
<strong>تليفون:</strong> +1 5589 55488 55<br />
<strong>بريد الكتروني:</strong> info@example.com<br />
</p>
</div>
<div class="col-lg-2 col-sm-6 footer-links mb-4">
<h4>روابط مهمة</h4>
<ul>
<li>
<i class="bi bi-chevron-left"></i>
<a href="index.html">الرئيسية</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="aboutUs.html">تعرف علينا</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمات</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">شروط الاستخدام</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">سياسة الخصوصية</a>
</li>
</ul>
</div>
<div class="col-lg-3 col-sm-6 footer-links mb-4">
<h4>خدماتنا</h4>
<ul>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الأولى</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الثانية</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الثالثة</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الرابعة</a>
</li>
<li>
<i class="bi bi-chevron-left"></i>
<a href="">الخدمة الخامسة</a>
</li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter mb-4">
<h4>انضم الى نشرتنا الاخبارية</h4>
<p>
المغلوطة حول استنكار النشوة وتمجيد الألم نشأت بالفعل، وسأعرض لك
التفاصيل لتكتشف حقيقة وأساس تلك السعادة البشرية، فلا أحد يرفض أو
يكره أو يتجنب الشعور بالسعادة، ولكن بفضل هؤ.
</p>
<form method="post" id="subscribe">
<input type="email" name="email" aria-labelledby="subscribe" />
<input
type="submit"
value="اشتراك"
aria-labelledby="subscribe" />
</form>
</div>
</div>
</div>
</div>
<div class="container d-md-flex py-3 text-black">
<div class="ms-md-auto text-center">
<div class="copyright">
© حقوق النشر
<strong><span>المعلم</span></strong>
| جميع الحقوق محفوظة
</div>
<div class="credits">
Designed by
<a href="https://khaledswidan.github.io/My-Profile/">
Bohemian Coder
</a>
</div>
</div>
<div class="social-links text-center text-md-right pt-3 pt-md-0">
<a href="" class="twitter" aria-label="Twitter">
<i class="bi bi-twitter"></i>
</a>
<a href="" class="facebook" aria-label="Facebook">
<i class="bi bi-facebook"></i>
</a>
<a href="" class="instagram" aria-label="Instagram">
<i class="bi bi-instagram"></i>
</a>
<a href="" class="globe2" aria-label="Globe2">
<i class="bi bi-globe2"></i>
</a>
<a href="" class="whatsapp" aria-label="Whatsapp">
<i class="bi bi-whatsapp"></i>
</a>
</div>
</div>
</footer>
<!-- End Footer -->
<!-- ======= Footer Nav ======= -->
<div class="footer-nav position-sticky">
<div class="footer-nav-box">
<a href="" class="">
<i class="bi bi-person-circle"></i>
</a>
<a href="" class="">
<i class="bi bi-play-circle"></i>
</a>
<a href="" class="">
<i class="bi bi-search"></i>
</a>
</div>
</div>
<div id="preloader"></div>
<a
href="#"
class="back-to-top d-flex align-items-center justify-content-center">
<i class="bi bi-caret-up-fill"></i>
</a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script>
const glightbox = GLightbox({ selector: ".glightbox" });
</script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>