-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
874 lines (858 loc) · 30.5 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
<!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" />
<title>EdTech Website</title>
<!-- bootstrap link -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin="anonymous"
/>
<!-- font awesome link -->
<script
src="https://kit.fontawesome.com/170ecfe680.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<!-- navbar start -->
<div class="container">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand fs-2 fw-bold me-5 pe-5" href="#"
>Edu <span class="text-primary">Care</span>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto ps-4">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Deals</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Success</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">Register</a>
</li>
</ul>
<form class="d-flex" role="search">
<button class="btn btn-outline-primary" type="submit">
Register
</button>
</form>
</div>
</div>
</nav>
</div>
<!-- navbar end -->
<!-- carousel banner start -->
<div class="container rounded-2">
<div
id="carouselExampleCaptions"
class="carousel slide"
data-bs-ride="false"
>
<div class="carousel-indicators">
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="images/cover/cover-1.png"
style="filter: brightness(40%)"
class="d-block w-100"
alt="..."
/>
<div
class="carousel-caption d-lg-block d-md-block d-sm-block d-block"
>
<div
class="carousel-caption d-lg-block d-md-block d-sm-block d-block pb-5"
>
<h2 class="fw-bold">
Get Started Digital <br />
Learning
</h2>
<p>
It is a long established fact that a reader will be
distracted
<br />
by the readable content of a page when looking at its
layout.
</p>
<button
class="btn bg-primary text-light fw-bolder"
type="submit"
>
Get Started
</button>
</div>
</div>
</div>
<div class="carousel-item">
<img
src="images/cover/cover-2.jpg"
style="filter: brightness(40%)"
class="d-block w-100"
alt="..."
/>
<div
class="carousel-caption d-lg-block d-md-block d-sm-block d-block pb-5"
>
<h2 class="fw-bold">
Get Started Digital <br />
Learning
</h2>
<p>
It is a long established fact that a reader will be distracted
<br />
by the readable content of a page when looking at its layout.
</p>
<button
class="btn bg-primary text-light fw-bolder"
type="submit"
>
Get Started
</button>
</div>
</div>
<div class="carousel-item">
<img
src="images/cover/cover-3.jpg"
style="filter: brightness(40%)"
class="d-block w-100"
alt="..."
/>
<div
class="carousel-caption d-lg-block d-md-block d-sm-block d-block pb-5"
>
<h2 class="fw-bold">
Get Started Digital <br />
Learning
</h2>
<p>
It is a long established fact that a reader will be distracted
<br />
by the readable content of a page when looking at its layout.
</p>
<button
class="btn bg-primary text-light fw-bolder"
type="submit"
>
Get Started
</button>
</div>
</div>
</div>
<button
class="carousel-control-prev"
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next"
type="button"
data-bs-target="#carouselExampleCaptions"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<!-- carousel banner end -->
</header>
<main>
<!-- popular Courses Start -->
<section class="container">
<div class="text-center mt-5">
<h3 class="fw-bold">
Discover Our Popular <br />
Courses
</h3>
<p>
It is a long established fact that a reader will be distracted by
the readable <br />
content of a page when looking at its layout.
</p>
</div>
<div class="row row-cols-2 g-2">
<div class="col col-lg-6 col-md-12 col-md-12 col-12">
<div
class="d-flex flex-lg-row flex-md-row flex-sm-column flex-column border border-2 rounded-1"
>
<img
src="images/course/course-1.png"
class="card-img-top"
alt="..."
/>
<div class="card-body p-3">
<h6 class="card-title pb-3 fw-bolder">
Fundamental Of UI/UX Design
</h6>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<p class="text-primary fw-bold">Price : 20$</p>
</div>
</div>
</div>
<div class="col col-lg-6 col-md-12 col-md-12 col-12">
<div
class="d-flex flex-lg-row flex-md-row flex-sm-column flex-column border border-2 rounded-1"
>
<img
src="images/course/course-2.png"
class="card-img-top"
alt="..."
/>
<div class="card-body p-3">
<h6 class="card-title pb-3 fw-bolder">
Javascript Basic to advanced
</h6>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<p class="text-primary fw-bold">Price : 20$</p>
</div>
</div>
</div>
<div class="col col-lg-6 col-md-12 col-md-12 col-12">
<div
class="d-flex flex-lg-row flex-md-row flex-sm-column flex-column border border-2 rounded-1"
>
<img
src="images/course/course-3.png"
class="card-img-top"
alt="..."
/>
<div class="card-body p-3">
<h6 class="card-title pb-3 fw-bolder">
Fullstack Web Development
</h6>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<p class="text-primary fw-bold">Price : 20$</p>
</div>
</div>
</div>
<div class="col col-lg-6 col-md-12 col-md-12 col-12">
<div
class="d-flex flex-lg-row flex-md-row flex-sm-column flex-column border border-2 rounded-1"
>
<img
src="images/course/course-4.png"
class="card-img-top"
alt="..."
/>
<div class="card-body p-3">
<h6 class="card-title pb-3 fw-bolder">Digital Marketing</h6>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<p class="text-primary fw-bold">Price : 20$</p>
</div>
</div>
</div>
<div class="col col-lg-6 col-md-12 col-md-12 col-12">
<div
class="d-flex flex-lg-row flex-md-row flex-sm-column flex-column border border-2 rounded-1"
>
<img
src="images/course/course-5.png"
class="card-img-top"
alt="..."
/>
<div class="card-body p-3">
<h6 class="card-title pb-3 fw-bolder">
Photography Basic Rules
</h6>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<p class="text-primary fw-bold">Price : 20$</p>
</div>
</div>
</div>
<div class="col col-lg-6 col-md-12 col-md-12 col-12">
<div
class="d-flex flex-lg-row flex-md-row flex-sm-column flex-column border border-2 rounded-1"
>
<img
src="images/course/course-6.png"
class="card-img-top"
alt="..."
/>
<div class="card-body p-3">
<h6 class="card-title pb-3 fw-bolder">Motion Graphics</h6>
<p class="card-text">
Some quick example text to build on the card title and make up
the bulk of the card's content.
</p>
<p class="text-primary fw-bold">Price : 20$</p>
</div>
</div>
</div>
</div>
<div class="text-center">
<button
class="btn bg-primary text-light fw-bolder mt-4 mb-5"
type="submit"
>
See More Courses
</button>
</div>
</section>
<!-- popular Courses End-->
<!-- explore elearning institute start -->
<section class="container">
<div class="card mb-3" style="max-width: 100%">
<div class="row g-0">
<div class="col-md-4">
<img
src="images/working.png"
class="img-fluid rounded-start"
alt="..."
/>
</div>
<div class="col-md-8">
<div class="card-body">
<h3 class="card-title fw-bolder">
Explore The elearning <br />
Institute
</h3>
<p class="card-text">
There are many variations of passages of Lorem Ipsum
available, but the majority have suffered alteration in some
form, by injected humour, or randomised words which don't look
even slightly believable. If you are going to use a passage of
Lorem Ipsum, you need to be sure.
</p>
<p class="card-text">
<small
>Anything embarrassing hidden in the middle of text. All the
Lorem Ipsum generators on the Internet tend to repeat
predefined.</small
>
</p>
<div class="d-flex">
<div class="me-5">
<h3 class="fw-bolder">3.2K+</h3>
<p>Online Course</p>
</div>
<div class="me-5">
<h3 class="fw-bolder">600+</h3>
<p>Expert member</p>
</div>
<div>
<h3 class="fw-bolder">1k+</h3>
<p>Rating & Review</p>
</div>
</div>
<button
class="btn bg-primary text-light fw-bolder"
type="submit"
>
Read More
</button>
</div>
</div>
</div>
</div>
</section>
<!-- explore elearning institute end -->
<!-- ready to join // Modal start -->
<section class="container mt-5">
<div
style="height: auto"
class="d-flex flex-lg-row flex-md-column flex-sm-column flex-column bg-info text-light rounded-2 justify-content-between align-items-center"
>
<div class="m-5">
<h3 class="fw-bolder">Ready to join?</h3>
<p>
It is a long established fact that a reader will be distracted by
the <br />
readable content of a page when looking at its layout
</p>
</div>
<div>
<div class="container m-3">
<button
type="button"
class="btn btn-primary fw-bolder bg-light text-primary"
data-bs-toggle="modal"
data-bs-target="#myModal"
>
Register Now
</button>
</div>
<!-- The Modal -->
<div class="modal" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title text-dark">Here's our Speciality</h4>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
></button>
</div>
<!-- Modal body -->
<div class="modal-body text-dark">
Enter your details to be continue...
</div>
<!-- Modal footer -->
<div class="modal-footer">
<button
type="button"
class="btn btn-danger"
data-bs-dismiss="modal"
>
Close
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ready to join // Modal end -->
<!-- successfull studends list start -->
<section class="container mt-5">
<div>
<h3 class="fw-bolder">
Meet Our Successfull <br />
Students
</h3>
<p>
It is a long established fact that a reader will be distracted by
the <br />
readable content of a page when looking at its layout.
</p>
</div>
<div class="row row-cols-4">
<div class="col col-lg-3 col-md-6 col-sm-12 col-12">
<div class="card">
<img
src="images/student/student-1.png"
class="card-img-top"
alt="..."
/>
<div class="card-body">
<h5>Awlad Hossain</h5>
<p class="card-text">UIUX Designer</p>
</div>
</div>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 col-12">
<div class="card">
<img
src="images/student/student-2.png"
class="card-img-top"
alt="..."
/>
<div class="card-body">
<h5>Jannatul Islam</h5>
<p class="card-text">Motion Designr</p>
</div>
</div>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 col-12">
<div class="card">
<img
src="images/student/student-3.png"
class="card-img-top"
alt="..."
/>
<div class="card-body">
<h5>Imran Hossain</h5>
<p class="card-text">Graphic Designer</p>
</div>
</div>
</div>
<div class="col col-lg-3 col-md-6 col-sm-12 col-12">
<div class="card">
<img
src="images/student/student-4.png"
class="card-img-top"
alt="..."
/>
<div class="card-body">
<h5>Nishi Akter</h5>
<p class="card-text">Web Developer</p>
</div>
</div>
</div>
</div>
<div class="text-center">
<button
class="btn bg-primary text-light fw-bolder mt-4 mb-5"
type="submit"
>
View All
</button>
</div>
</section>
<!-- successfull studends list end -->
<!-- Students Feedback start -->
<section class="container">
<h2 class="text-center fw-bold">Some Students Feedback</h2>
<p class="text-center">
It is a long established fact that a reader will be distracted by the
readable <br />
content of a page when looking at its layout.
</p>
<div
class="d-flex flex-lg-row flex-md-column flex-sm-column flex-column fl mt-5 mb-5"
>
<div class="border rounded-2 p-3 me-3 position-relative">
<span
class="position-absolute btn top-50 start-0 translate-middle badge rounded-pill bg-light text-primary border p-2 fs-4"
>
<
<span class="visually-hidden"></span>
</span>
<div class="d-flex justify-content-between pb-2">
<div>
<img src="images/comma.png" alt="" />
</div>
<div>
<i class="fa-solid fa-star text-warning"></i>
<i class="fa-solid fa-star text-warning"></i>
<i class="fa-solid fa-star text-warning"></i>
<i class="fa-solid fa-star text-warning"></i>
<i class="fa-regular fa-star text-warning"></i>
</div>
</div>
<div>
<p>
Don’t get us wrong. We’re not telling you that you should only
give feedback when students get something right! We all know
that correcting students is essential for understanding and also
for building resiliency. Providing constructive, critical
feedback to our students is important, but how we deliver our
feedback is vital.
</p>
</div>
<div class="d-flex">
<div>
<img
class="me-3 p-2"
src="images/student/student-5.png"
alt=""
/>
</div>
<div>
<h6 class="fs-6">Awlad Hossain</h6>
<p>UI Designer</p>
</div>
</div>
</div>
<div class="border rounded-2 p-3 position-relative">
<span
class="position-absolute btn top-50 start-100 translate-middle badge rounded-pill bg-primary p-2 fs-4"
>
>
<span class="visually-hidden"></span>
</span>
<div class="d-flex justify-content-between pb-2">
<div>
<img src="images/comma.png" alt="" />
</div>
<div>
<i class="fa-solid fa-star text-warning"></i>
<i class="fa-solid fa-star text-warning"></i>
<i class="fa-solid fa-star text-warning"></i>
<i class="fa-solid fa-star text-warning"></i>
<i class="fa-regular fa-star text-warning"></i>
</div>
</div>
<div>
<p>
Don’t get us wrong. We’re not telling you that you should only
give feedback when students get something right! We all know
that correcting students is essential for understanding and also
for building resiliency. Providing constructive, critical
feedback to our students is important, but how we deliver our
feedback is vital.
</p>
</div>
<div class="d-flex">
<div>
<img
class="me-3 p-2"
src="images/student/student-6.png"
alt=""
/>
</div>
<div>
<h6 class="fs-6">Shanta Akter</h6>
<p>Graphics Designer</p>
</div>
</div>
</div>
</div>
</section>
<!-- Students Feedback end -->
<!-- accordion start -->
<section class="container">
<div class="text-center">
<h3 class="fw-bolder">Frequently Asked Questions</h3>
<p>
It is a long established fact that a reader will be distracted by
the readable <br />
content of a page when looking at its layout.
</p>
</div>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button
class="accordion-button"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
aria-expanded="true"
aria-controls="collapseOne"
>
What is the difference between Flex and Grid ??
</button>
</h2>
<div
id="collapseOne"
class="accordion-collapse collapse show"
aria-labelledby="headingOne"
data-bs-parent="#accordionExample"
>
<div class="accordion-body">
The basic difference between CSS Grid Layout and CSS
<strong
>Flexbox Layout is that flexbox was designed for layout in one
dimension - either a row or a column.</strong
>
and
<br />
<strong
>Grid was designed for two-dimensional layout - rows, and
columns at the same time.</strong
>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseTwo"
aria-expanded="false"
aria-controls="collapseTwo"
>
What is the difference between Bootstrap and Tailwind ??
</button>
</h2>
<div
id="collapseTwo"
class="accordion-collapse collapse"
aria-labelledby="headingTwo"
data-bs-parent="#accordionExample"
>
<div class="accordion-body">
Bootstrap comes with a set of pre-styled responsive,
mobile-first components that possess a definite UI kit. <br />
and <br />
Tailwind offers predesigned widgets to build a site from scratch
with fast UI development.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseThree"
aria-expanded="false"
aria-controls="collapseThree"
>
What is the meaning of CSS Box Model ??
</button>
</h2>
<div
id="collapseThree"
class="accordion-collapse collapse"
aria-labelledby="headingThree"
data-bs-parent="#accordionExample"
>
<div class="accordion-body">
In CSS, the term "box model" is used when talking about design
and layout. The CSS box model is essentially
<strong>a box that wraps around every HTML element.</strong> It
consists of: margins, borders, padding, and the actual content.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingFour">
<button
class="accordion-button collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#collapseFour"
aria-expanded="false"
aria-controls="collapseFour"
>
What is Semantic Tag ??
</button>
</h2>
<div
id="collapseFour"
class="accordion-collapse collapse"
aria-labelledby="headingFour"
data-bs-parent="#accordionExample"
>
<div class="accordion-body">
<strong
>The tags that provide meaning to an HTML page rather than
just presentation.</strong
>It makes HTML more comprehensible by better defining the
different sections and layout of web pages.
</div>
</div>
</div>
</div>
</section>
<!-- accordion end -->
<!-- companys start -->
<section
class="container text-center d-lg-inline d-sm-none d-md-none d-none mt-5 mb-5"
>
<h3 class="pb-4 fw-bolder">Trusted by over 800+ companies</h3>
<div>
<img
class="pe-3 img-fluid"
src="images/company/company-1.png"
alt=""
/>
<img
class="pe-3 img-fluid"
src="images/company/company-2.png"
alt=""
/>
<img
class="pe-3 img-fluid"
src="images/company/company-3.png"
alt=""
/>
<img
class="pe-3 img-fluid"
src="images/company/company-4.png"
alt=""
/>
<img
class="pe-3 img-fluid"
src="images/company/company-5.png"
alt=""
/>
<img
class="pe-3 img-fluid"
src="images/company/company-6.png"
alt=""
/>
</div>
</section>
<!-- companys end -->
<!-- footer start -->
<footer
class="text-center bg-black text-light p-5"
style="width: 100%; height: 400px"
>
<h3>Edu Care</h3>
<p>
Office 41, Zawaya Buildin, Ghala Muscat, <br />
Sultanate of Oman
</p>
<p>@Privacy Ploicy | Terms of use</p>
<div>
<a target="_blank" href="https://www.facebook.com/"
><i class="fs-5 p-2 fa-brands fa-facebook"></i
></a>
<a target="_blank" href="https://twitter.com/?lang=en"
><i class="fs-5 p-2 fa-brands fa-square-twitter"></i
></a>
<a target="_blank" href="https://www.linkedin.com/"
><i class="fs-5 p-2 fa-brands fa-linkedin"></i
></a>
<a target="_blank" href="https://web.telegram.org/z/"
><i class="fs-5 p-2 fa-brands fa-telegram"></i
></a>
</div>
</footer>
<!-- footer end -->
</main>
<!-- js link -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"
></script>
</body>
</html>