-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
601 lines (597 loc) · 29.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Eduxpert</title>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/afe36047ee.js" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<!-- Custom css -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header part starts -->
<header>
<div class="container">
<!-- Navbar part starts -->
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand fw-semibold" href="#">Eduxpert</a>
<button class="navbar-toggler" 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">
<a class="nav-link mx-2" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">Deals</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">Success</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link mx-2" href="#">Register</a>
</li>
</ul>
<button class="btn btn-outline-primary fw-semibold register-btn" type="button">Register</button>
</div>
</nav>
<!-- Navbar part ends -->
<!-- Banner part starts -->
<section class="banner my-4">
<div id="carouselExampleCaptions" class="carousel slide" data-bs-ride="false">
<div class="carousel-inner">
<!-- Single item -->
<div class="carousel-item position-relative active">
<div class="overlay position-absolute top-0 start-0 end-0 bottom-0 rounded-1"></div>
<img src="images/cover/cover-1.png" class="d-block w-100" alt="cover-1">
<div class="carousel-caption d-md-block">
<h1 class="fw-semibold">Get Started Digital Learning</h1>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its
layout.</p>
<a href="#" class="btn btn-primary border rounded-1">Get Started</a>
</div>
</div>
<!-- Single item -->
<div class="carousel-item position-relative">
<div class="overlay position-absolute top-0 start-0 end-0 bottom-0 rounded-1"></div>
<img src="images/cover/cover-2.jpg" class="d-block w-100" alt="cover-2">
<div class="carousel-caption d-md-block">
<h1 class="fw-semibold">Get Started Digital Learning</h1>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its
layout.</p>
<a href="#" class="btn btn-primary border rounded-1">Get Started</a>
</div>
</div>
<!-- Single item -->
<div class="carousel-item position-relative">
<div class="overlay position-absolute top-0 start-0 end-0 bottom-0 rounded-1"></div>
<img src="images/cover/cover-3.jpg" class="d-block w-100" alt="cover-3">
<div class="carousel-caption d-md-block">
<h1 class="fw-semibold">Get Started Digital Learning</h1>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its
layout.</p>
<a href="#" class="btn btn-primary border rounded-1">Get Started</a>
</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>
</section>
<!-- Banner part ends -->
</div>
</header>
<!-- Header part ends -->
<!-- Main part starts -->
<main>
<div class="container">
<!-- Courses part starts -->
<section class="discover-courses">
<div class="title-info mb-5 text-center">
<h1 class="fw-semibold">Discover Our Popular Courses</h1>
<p>It is a long established fact that a reader will be distracted by the readable content
of a page when looking at its layout.</p>
</div>
<div class="courses">
<div class="row">
<!-- Single course -->
<div class="col-12 col-md-12 col-lg-6 mb-4">
<div class="course border rounded-1 d-flex gap-3">
<div class="row">
<div class="col-12 col-md-4 col-lg-4 gap-3">
<div class="course-img">
<img src="images/course/course-1.png" class="w-100" alt="course-1">
</div>
</div>
<div class="col-12 col-md-8 col-lg-8 pt-3">
<div class="course-info">
<h3 class="fw-semibold">Fundamental Of UI/UX Design</h3>
<p class="course-info-text">Some quick example text to build on the card title and make up the
bulk
of the card.</p>
<p class="price fw-semibold">Price : 201</p>
</div>
</div>
</div>
</div>
</div>
<!-- Single course -->
<div class="col-12 col-md-12 col-lg-6 mb-4">
<div class="course border rounded-1 d-flex gap-3">
<div class="row">
<div class="col-12 col-md-4 col-lg-4 gap-3">
<div class="course-img">
<img src="images/course/course-2.png" class="w-100" alt="course-2">
</div>
</div>
<div class="col-12 col-md-8 col-lg-8 pt-3">
<div class="course-info">
<h3 class="fw-semibold">Javascript Basic to advanced</h3>
<p class="course-info-text">Some quick example text to build on the card title and make up the
bulk
of the card.</p>
<p class="price fw-semibold">Price : 201</p>
</div>
</div>
</div>
</div>
</div>
<!-- Single course -->
<div class="col-12 col-md-12 col-lg-6 mb-4">
<div class="course border rounded-1 d-flex gap-3">
<div class="row">
<div class="col-12 col-md-4 col-lg-4 gap-3">
<div class="course-img">
<img src="images/course/course-3.png" class="w-100" alt="course-3">
</div>
</div>
<div class="col-12 col-md-8 col-lg-8 pt-3">
<div class="course-info">
<h3 class="fw-semibold">Fullstack Web Development</h3>
<p class="course-info-text">Some quick example text to build on the card title and make up the
bulk
of the card.</p>
<p class="price fw-semibold">Price : 201</p>
</div>
</div>
</div>
</div>
</div>
<!-- Single course -->
<div class="col-12 col-md-12 col-lg-6 mb-4">
<div class="course border rounded-1 d-flex gap-3">
<div class="row">
<div class="col-12 col-md-4 col-lg-4 gap-3">
<div class="course-img">
<img src="images/course/course-4.png" class="w-100" alt="course-4">
</div>
</div>
<div class="col-12 col-md-8 col-lg-8 pt-3">
<div class="course-info">
<h3 class="fw-semibold">Digital Marketing</h3>
<p class="course-info-text">Some quick example text to build on the card title and make up the
bulk
of the card.</p>
<p class="price fw-semibold">Price : 201</p>
</div>
</div>
</div>
</div>
</div>
<!-- Single course -->
<div class="col-12 col-md-12 col-lg-6 mb-4">
<div class="course border rounded-1 d-flex gap-3">
<div class="row">
<div class="col-12 col-md-4 col-lg-4 gap-3">
<div class="course-img">
<img src="images/course/course-5.png" class="w-100" alt="course-5">
</div>
</div>
<div class="col-12 col-md-8 col-lg-8 pt-3">
<div class="course-info">
<h3 class="fw-semibold">Photography Basic Rules</h3>
<p class="course-info-text">Some quick example text to build on the card title and make up the
bulk
of the card.</p>
<p class="price fw-semibold">Price : 201</p>
</div>
</div>
</div>
</div>
</div>
<!-- Single course -->
<div class="col-12 col-md-12 col-lg-6 mb-4">
<div class="course border rounded-1 d-flex gap-3">
<div class="row">
<div class="col-12 col-md-4 col-lg-4 gap-3">
<div class="course-img">
<img src="images/course/course-6.png" class="w-100" alt="course-6">
</div>
</div>
<div class="col-12 col-md-8 col-lg-8 pt-3">
<div class="course-info">
<h3 class="fw-semibold">Motion Graphics</h3>
<p class="course-info-text">Some quick example text to build on the card title and make up the
bulk
of the card.</p>
<p class="price fw-semibold">Price : 201</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center my-5">
<a href="#" class="btn btn-primary fw-semibold border rounded-1 more-btn">See More Courses</a>
</div>
</section>
<!-- Courses part ends -->
<!-- Learning institute part starts -->
<section class="learning-institute">
<div class="row">
<div class="col-sm-12 col-md-5 col-lg-5 pe-0">
<div class="learning-institute-img">
<img src="images/working.png" class="img-fluid" alt="working">
</div>
</div>
<div class="col-sm-12 col-md-7 col-lg-7 ps-0">
<div class="learning-institute-info p-5">
<h1 class="mb-4">Explore The elearning Institute</h1>
<p>Some of the best online learning platforms include Coursera, Skillshare, Udemy,
Codecademy, Edx, Pluralsight, Future Learn, and Moodle. Apart from online learning platforms, </p>
<p class="text-overflow" title="">Those,are leading a fast-growing elearning industry, especially after
Covid-19. An unbreakable piece of evidence is the increasing number of people becoming interested in
online learning.</p>
<div class="row mt-4 learning-institute-info-details">
<div class="col-6 col-md-6 col-lg-4">
<h1 class="fw-semibold">3.2K+</h1>
<p>Online Course</p>
</div>
<div class="col-6 col-md-6 col-lg-4">
<h1 class="fw-semibold">600+</h1>
<p>Expert Member</p>
</div>
<div class="col-6 col-md-6 col-lg-4">
<h1 class="fw-semibold">1K+</h1>
<p>Rating and Review</p>
</div>
</div>
<a href="#" class="btn btn-primary fw-semibold border rounded-1 more-btn mt-3 mb-5">Read More</a>
</div>
</div>
</div>
</section>
<!-- Learning institute part ends -->
<!-- Ready to join part starts -->
<section class="ready-to-join rounded-1 p-5">
<div class="row">
<div class="col-12 col-md-12 col-lg-8 ps-5">
<div>
<h1 class="fw-semibold">Ready to join?</h1>
<p>It is a long established fact that a reader will be distracted by the readable content of a page
when looking at its layout.</p>
</div>
</div>
<div class="col-12 col-md-12 col-lg-4 d-flex align-items-center justify-content-center ps-5">
<div>
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary fw-semibold modal-btn" data-bs-toggle="modal"
data-bs-target="#exampleModal">
Register Now
</button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Register Form</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form action="#">
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating">
<input type="password" class="form-control" id="floatingPassword" placeholder="Password">
<label for="floatingPassword">Password</label>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary border more-btn">Register Now</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Ready to Join part ends -->
<!-- Students part starts -->
<section class="students mt-4">
<div class="students-title-info mb-5">
<h1 class="fw-semibold">Meet Our Successfull Students</h1>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when
looking at its layout.</p>
</div>
<div class="row">
<!-- Single student -->
<div class="col-12 col-md-6 col-lg-3">
<div class="student">
<div class="card mb-4">
<img src="images/student/student-1.png" class="card-img-top" alt="student-1">
<div class="card-body">
<h5 class="card-title fw-semibold">Awlad Hossain</h5>
<p class="card-text">
UIUX Designer
</p>
</div>
</div>
</div>
</div>
<!-- Single student -->
<div class="col-12 col-md-6 col-lg-3">
<div class="student">
<div class="card mb-4">
<img src="images/student/student-2.png" class="card-img-top" alt="student-2">
<div class="card-body">
<h5 class="card-title fw-semibold">Jannatul Islam</h5>
<p class="card-text">
Motion Design
</p>
</div>
</div>
</div>
</div>
<!-- Single student -->
<div class="col-12 col-md-6 col-lg-3">
<div class="student">
<div class="card mb-4">
<img src="images/student/student-3.png" class="card-img-top" alt="student-3">
<div class="card-body">
<h5 class="card-title fw-semibold">Imran Hossain</h5>
<p class="card-text">
Graphic Designer
</p>
</div>
</div>
</div>
</div>
<!-- Single student -->
<div class="col-12 col-md-6 col-lg-3">
<div class="student">
<div class="card mb-4">
<img src="images/student/student-4.png" class="card-img-top" alt="student-4">
<div class="card-body">
<h5 class="card-title fw-semibold">Nishi Akter</h5>
<p class="card-text">
Web Developer
</p>
</div>
</div>
</div>
</div>
</div>
<div class="text-center my-5 d-md-none d-lg-block">
<a href="#" class="btn btn-primary fw-semibold border rounded-1 more-btn">View all</a>
</div>
</section>
<!-- Students part ends -->
<!-- Feedback part starts -->
<section class="feedback">
<div class="title-info mb-5 text-center">
<h1>Some Students Feedback</h1>
<p class="mx-5">It is a long established fact that a reader will be distracted by the readable content of a
page when looking at its layout.</p>
</div>
<div class="feedback-info">
<div class="row">
<div class="col-12 col-md-12 col-lg-6">
<div class="feedback-info-details p-5 border rounded-1 mb-4">
<div class="d-flex justify-content-between mb-4">
<img src="images/comma.png" alt="Comma">
<div class="rating">
<i class="fa fa-solid fa-star"></i>
<i class="fa fa-solid fa-star"></i>
<i class="fa fa-solid fa-star"></i>
<i class="fa fa-solid fa-star"></i>
<i class="fa fa-solid fa-star muted-star"></i>
</div>
</div>
<p>Some of the best online learning platforms include Coursera, Skillshare, Udemy, Codecademy, Edx,
Pluralsight, Future Learn, and Moodle. Apart from online learning platforms, we also have online
course platforms like LearnWorlds, Teachable, Thinkific, Kajabi, and Podia.</p>
<div class="d-flex mt-4">
<img src="images/student/student-5.png" class="me-4" alt="Student-5">
<div>
<h6 class="fw-semibold">Awlad Hossain</h6>
<p>UI Designer</p>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-12 col-lg-6">
<div class="feedback-info-details p-5 border rounded-1 mb-4">
<div class="d-flex justify-content-between mb-4">
<img src="images/comma.png" alt="Comma">
<div class="rating">
<i class="fa fa-solid fa-star"></i>
<i class="fa fa-solid fa-star"></i>
<i class="fa fa-solid fa-star"></i>
<i class="fa fa-solid fa-star"></i>
<i class="fa fa-solid fa-star muted-star"></i>
</div>
</div>
<p>Some of the best online learning platforms include Coursera, Skillshare, Udemy, Codecademy, Edx,
Pluralsight, Future Learn, and Moodle. Apart from online learning platforms, we also have online
course platforms like LearnWorlds, Teachable, Thinkific, Kajabi, and Podia.</p>
<div class="d-flex mt-4">
<img src="images/student/student-6.png" class="me-4" alt="Student-6">
<div>
<h6 class="fw-semibold">Shanta Akter</h6>
<p>UI Designer</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="text-center my-5 d-lg-none">
<a href="#" class="btn btn-primary fw-semibold border rounded-1 more-btn">View all</a>
</div>
</section>
<!-- Feedback part ends -->
<!-- FAQ part starts -->
<section class="faq">
<div class="title-info mb-5 text-center">
<h1 class="fw-semibold">Frequently Asked Questions</h1>
<p class="mx-5">It is a long established fact that a reader will be distracted by the readable content of a
page when looking at its layout.</p>
</div>
<div class="accordion" id="accordionExample">
<!-- Single item -->
<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 are the differences between flexbox 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 Flexbox Layout is that flexbox was designed for
layout in one dimension - either a row or a column. Grid was designed for two-dimensional layout -
rows, and columns at the same time. The two specifications share some common features, however, and if
you have already learned how to use flexbox, the similarities should help you get to grips with Grid.
</div>
</div>
</div>
<!-- Single item -->
<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 are the differences between bootstrap and tailwind?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo"
data-bs-parent="#accordionExample">
<div class="accordion-body">
The main difference between TailwindCSS and Bootstrap is that Tailwind CSS is not a UI kit. Unlike UI
kits such as Bootstrap, Bulma, and Foundation, Tailwind CSS doesn’t have a default theme or built-in
UI components. Instead, it comes with predesigned widgets you can use to build your site from scratch.
</div>
</div>
</div>
<!-- Single item -->
<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 css box model?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree"
data-bs-parent="#accordionExample">
<div class="accordion-body">
The CSS box model is a container that contains multiple properties including borders, margin, padding,
and the content itself. It is used to create the design and layout of web pages. It can be used as a
toolkit for customizing the layout of different elements. The web browser renders every element as a
rectangular box according to the CSS box model. Box-Model has multiple properties in CSS.
</div>
</div>
</div>
<!-- Single item -->
<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 a semantic tag?
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour"
data-bs-parent="#accordionExample">
<div class="accordion-body">
The HTML semantics refers to the tags that provide meaning to an HTML page rather than just
presentation. It makes HTML more comprehensible by better defining the different sections and layout
of web pages. The core characteristic of a semantic element is that it clearly communicated its
meaning to both the developer and the browser. These elements clearly define its content.
</div>
</div>
</div>
</div>
</section>
<!-- FAQ part ends -->
<!-- Companies part starts -->
<section class="companies d-none d-lg-block">
<div class="companies-title-info text-center mb-5">
<h1>Trusted by over 800+ companies</h1>
</div>
<div class="companies-images">
<img src="images/company/company-1.png" class="me-4" alt="Company-1">
<img src="images/company/company-2.png" class="mx-4" alt="Company-2">
<img src="images/company/company-3.png" class="mx-4" alt="Company-3">
<img src="images/company/company-4.png" class="mx-4" alt="Company-4">
<img src="images/company/company-5.png" class="mx-4" alt="Company-5">
<img src="images/company/company-6.png" class="ms-4" alt="Company-6">
</div>
</section>
<!-- Companies part ends -->
</div>
</main>
<!-- Main part ends -->
<!-- Footer part starts -->
<footer class="mt-5 p-5 text-center">
<h3 class="my-3">Eduxpert</h3>
<p><small>Office 41, Zawaya Buildin, Ghala Muscat,<br> Sultanate of Oman</small></p>
<p><small>Privacy Policy | Terms of use</small></p>
<div class="social-links">
<a href="#" class="text-decoration-none d-inline-block rounded-circle pt-2 mx-2">
<i class="fa fa-brands fa-facebook-f"></i>
</a>
<a href="#" class="text-decoration-none d-inline-block rounded-circle pt-2 mx-2">
<i class="fa fa-brands fa-twitter"></i>
</a>
<a href="#" class="text-decoration-none d-inline-block rounded-circle pt-2 mx-2">
<i class="fa fa-brands fa-whatsapp"></i>
</a>
<a href="#" class="text-decoration-none d-inline-block rounded-circle pt-2 mx-2">
<i class="fa fa-brands fa-instagram"></i>
</a>
</div>
</footer>
<!-- Footer part ends -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
</body>
</html>