-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
683 lines (595 loc) · 36.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
<!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>High5 Edu</title>
<!-- Google Font Adding -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Adding CSS Style Sheet -->
<link rel="stylesheet" href="style.css">
<!-- Adding Font Awesome -->
<script src="https://kit.fontawesome.com/dd1db64a49.js" crossorigin="anonymous"></script>
<!-- Bootstrap CDN Here -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css">
</head>
<body>
<!-- ----------- Header Sectino Start Here --------- -->
<!-- ----------- Header Sectino Start Here --------- -->
<!-- ----------- Header Sectino Start Here --------- -->
<header>
<!-- NavBar Start Here ----- -->
<!-- NavBar Start Here ----- -->
<!-- NavBar Start Here ----- -->
<section class="container">
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand fw-semibold" href="#home">High5 Edu</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">
<!-- NAV Item -->
<ul class="navbar-nav mb-2 mb-lg-0 mx-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#home"><button class=" btn btn-outline-info px-3 me-2 border-0 fw-semibold active">Home</button></a>
</li>
<li class="nav-item">
<a class="nav-link " href="#course"><button class=" btn btn-outline-info px-3 me-2 border-0 fw-semibold text-dark">Courses</button> </a>
</li>
<li class="nav-item">
<a class="nav-link " href="#explore"><button class=" btn btn-outline-info px-3 me-2 border-0 fw-semibold text-dark">Explore</button> </a>
</li>
<li class="nav-item">
<a class="nav-link " href="#success"><button class=" btn btn-outline-info px-3 me-2 border-0 fw-semibold text-dark">Success</button> </a>
</li>
<li class="nav-item">
<a class="nav-link " href="#faq"><button class=" btn btn-outline-info px-3 me-2 border-0 fw-semibold text-dark">FAQ</button> </a>
</li>
<li class="nav-item">
<a class="nav-link " href="#registration"><button class=" btn btn-outline-info px-3 me-2 border-0 fw-semibold text-dark">Contact</button> </a>
</li>
</ul>
<form class="d-flex" role="search">
<a href="#registration"><button class="btn btn-outline-info text-dark fw-semibold border border-1 border-info" type="submit">REGISTER</button></a>
</form>
</div>
</div>
</nav>
</section>
<!-- Navbar End Here ---------------------- -->
<!-- Navbar End Here ---------------------- -->
<!-- Navbar End Here ---------------------- -->
<!-- ------------- Hero Section Start Here ------------ -->
<!-- ------------- Hero Section Start Here ------------ -->
<!-- ------------- Hero Section Start Here ------------ -->
<section class="container my-4" id="home">
<div id="carouselExampleIndicators" class="carousel slide" data-bs-ride="true">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" 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" class=" img-fluid" alt="..." style="filter: brightness(50%);">
<div class=" carousel-caption mb-3 mb-lg-5">
<h2 class="w-75 w-lg-50 mx-auto mb-3 mb-lg-4">Get Started Digital Learning</h2>
<p class="w-75 mx-auto mb-4 mb-lg-4">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="#course"><button class="btn btn-outline-info active px-5 py-2 text-white fw-semibold mb-4 mb-lg-4">Get Started</button></a>
</div>
</div>
<div class="carousel-item">
<img src="images/cover/cover-2.png" class=" img-fluid" alt="..." style="filter: brightness(50%);">
<div class=" carousel-caption mb-3 mb-lg-5">
<h2 class="w-75 w-lg-50 mx-auto mb-3 mb-lg-4">Extra Care about Student</h2>
<p class="w-75 mx-auto mb-4 mb-lg-4">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="#course"><button class="btn btn-outline-info active px-5 py-2 text-white fw-semibold mb-4 mb-lg-4">Get Started</button></a>
</div>
</div>
<div class="carousel-item">
<img src="images/cover/cover-3.png" class=" img-fluid" alt="..." style="filter: brightness(50%);">
<div class=" carousel-caption mb-3 mb-lg-5">
<h2 class="w-75 w-lg-50 mx-auto mb-3 mb-lg-4">IT Based Course Module</h2>
<p class="w-75 mx-auto mb-4 mb-lg-4">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="#course"><button class="btn btn-outline-info active px-5 py-2 text-white fw-semibold mb-4 mb-lg-4">Get Started</button></a>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" 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="#carouselExampleIndicators" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
<!-- Hero Section End Here ----------------------------------------- -->
<!-- Hero Section End Here ----------------------------------------- -->
<!-- Hero Section End Here ----------------------------------------- -->
</header>
<!-- Header Section End Here ---------- -->
<!-- Header Section End Here ---------- -->
<!-- Header Section End Here ---------- -->
<main>
<!-- Course Section Start Here ------------- -->
<!-- Course Section Start Here ------------- -->
<!-- Course Section Start Here ------------- -->
<section class="container my-5" id="course">
<div class=" text-center">
<h2 class=" fw-semibold w-50 mx-auto mt-4 mb-3">Discover Our Popular Courses</h2>
<p class=" text-secondary w-50 mx-auto mb-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="row align-items-center border-1 g-3">
<!-- Course 1 -->
<div class=" col-sm-12 col-md-12 col-lg-6">
<div class="card d-flex flex-sm-column flex-md-row flex-lg-row courses-img">
<img src="images/course/course-1.png" alt="" srcset="" class=" card-img-top w-lg-50 ">
<div class=" card-body my-auto">
<h4 class=" card-title">Fundamental Of UI/UX Design</h4>
<p class="secondary card-text">Some quick example text to build on the card title
and make up the bulk of the card.</p>
<a href="#registration"><button class="btn btn-info fw-semibold border px-3 mt-1">Enroll Now</button></a>
</div>
</div>
</div>
<!-- Course 2 -->
<div class=" col-sm-12 col-md-12 col-lg-6">
<div class="card d-flex flex-sm-column flex-md-row flex-lg-row courses-img">
<img src="images/course/course-2.png" alt="" srcset="" class=" card-img-top w-lg-50 " >
<div class=" card-body my-auto">
<h4 class=" card-title">Fundamental Of UI/UX Design</h4>
<p class="secondary card-text">Some quick example text to build on the card title
and make up the bulk of the card.</p>
<a href="#registration"><button class="btn btn-info fw-semibold border px-3 mt-1">Enroll Now</button></a>
</div>
</div>
</div>
<!-- Course 3 -->
<div class=" col-sm-12 col-md-12 col-lg-6">
<div class="card d-flex flex-sm-column flex-md-row flex-lg-row courses-img">
<img src="images/course/course-3.png" alt="" srcset="" class=" card-img-top w-lg-50 " >
<div class=" card-body my-auto">
<h4 class=" card-title">Fundamental Of UI/UX Design</h4>
<p class="secondary card-text">Some quick example text to build on the card title
and make up the bulk of the card.</p>
<a href="#registration"><button class="btn btn-info fw-semibold border px-3 mt-1">Enroll Now</button></a>
</div>
</div>
</div>
<!-- Course 4 -->
<div class=" col-sm-12 col-md-12 col-lg-6">
<div class="card d-flex flex-sm-column flex-md-row flex-lg-row courses-img">
<img src="images/course/course-4.png" alt="" srcset="" class=" card-img-top w-lg-50 " >
<div class=" card-body my-auto">
<h4 class=" card-title">Fundamental Of UI/UX Design</h4>
<p class="secondary card-text">Some quick example text to build on the card title
and make up the bulk of the card.</p>
<a href="#registration"><button class="btn btn-info fw-semibold border px-3 mt-1">Enroll Now</button></a>
</div>
</div>
</div>
</div>
<div class=" text-center"><a href="#home"><button class="btn btn-outline-info mt-5 active px-5 py-2 fw-semibold">See More Courses</button></a></div>
</section>
<!-- Course Section End Here ----------- -->
<!-- Course Section End Here ----------- -->
<!-- Course Section End Here ----------- -->
<!-- Explore Section Start Here ----- -->
<!-- Explore Section Start Here ----- -->
<!-- Explore Section Start Here ----- -->
<section class="container my-5" id="explore">
<div class="row align-items-center bg-danger bg-opacity-10 g-2 flex-column-reverse flex-lg-row flex-md-row">
<div class="col-sm-12 col-md-5 col-lg-5">
<img src="images/working.png" alt="" srcset="" class="img-fluid">
</div>
<div class="col-12 col-sm-7 col-lg-7 align-items-center p-4 ">
<h2 class="w-75 w-lg-50 fw-bold">Explore The e-learning Institute</h2>
<p class=" text-secondary">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=" text-secondary">Anything embarrassing hidden in the middle of text. All the Lorem Ipsum
generators on the Internet tend to repeat predefined.</p>
<div class=" d-flex flex-row justify-content-between mt-5">
<div>
<h2 class=" fw-bold">3.2K+</h2>
<p class=" text-secondary fs-6 w-75">Online Course</p>
</div>
<div class="">
<h2 class=" fw-bold">600+</h2>
<p class=" text-secondary fs-6 w-75">Expert member</p>
</div>
<div class="">
<h2 class=" fw-bold">1k+</h2>
<p class=" text-secondary fs-6 w-75">Rating & Review</p>
</div>
</div>
<a href="#"><button class="btn btn-outline-info active px-4 py-2 mb-4 mt-3 fw-bold">Explore More</button></a>
</div>
</div>
</section>
<!-- Explore section End Here --------- -->
<!-- Explore section End Here --------- -->
<!-- Explore section End Here --------- -->
<!-- Registration Section Start Here ------------- -->
<!-- Registration Section Start Here ------------- -->
<!-- Registration Section Start Here ------------- -->
<section class="container my-4" id="registration">
<div class=" d-flex flex-column flex-md-row flex-lg-row justify-content-lg-between align-items-center p-5 bg-info">
<div>
<h2 class=" text-dark fw-bold text-center text-md-start text-lg-start ">Ready to Join?</h2>
<p class=" text-dark w-75 w-md-50 w-lg-50 mx-auto ms-md-0 ms-lg-0 text-center text-md-start text-lg-start">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>
<!-- Button trigger modal -->
<button type="button" class="btn btn-light fw-bold" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
REGISTER NOW
</button>
<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">Register Now</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class=" text-center">
<form action="#" class=" ">
<input type="email" name="email" id="email" placeholder="Enter Your Email" class="px-5 py-2 text-start mb-4">
<input type="password" name="password" id="password" placeholder="Select a Password" class="px-5 py-2 text-start mb-3"><br>
<input type="submit" value="Register" class=" btn btn-info px-3 fw-bold">
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Registration Section End Here -------------- -->
<!-- Registration Section End Here -------------- -->
<!-- Registration Section End Here -------------- -->
<!-- Success Section Start Here --------- -->
<!-- Success Section Start Here --------- -->
<!-- Success Section Start Here --------- -->
<section class=" container my-5" id="success">
<div class=" text-center my-4">
<h1 class=" fw-bold mb-5">Meet Our Successfull Students</h1>
<p class=" text-secondary w-50 mx-auto mb-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="row justify-content-center align-items-center g-3">
<div class="col-12 col-md-6 col-lg-3">
<div class="card">
<img src="images/student/student-1.png" alt="" class=" card-img-top img-fluid">
<div class=" card-body">
<h6>Awlad Hossain</h6>
<p class=" text-secondary">UI/UX Designer</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="card">
<img src="images/student/student-2.png" alt="" class=" card-img-top img-fluid">
<div class=" card-body">
<h6>Jannatul Islam</h6>
<p class=" text-secondary">Motion Design</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="card">
<img src="images/student/student-3.png" alt="" class=" card-img-top img-fluid">
<div class=" card-body">
<h6>Imran Hossain</h6>
<p class=" text-secondary">Graphic Designer</p>
</div>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="card">
<img src="images/student/student-4.png" alt="" class=" card-img-top img-fluid">
<div class=" card-body">
<h6>Nishi Akter</h6>
<p class=" text-secondary">Web Developer</p>
</div>
</div>
</div>
</div>
</section>
<!-- Success Section End Here --------- -->
<!-- Success Section End Here --------- -->
<!-- Success Section End Here --------- -->
<!-- Student FeedBack Section Start Here ------------- -->
<!-- Student FeedBack Section Start Here ------------- -->
<!-- Student FeedBack Section Start Here ------------- -->
<section class=" container my-5 ">
<div class=" text-center my-4">
<h1 class=" fw-bold mb-4">Some Students Feedback</h1>
<p class=" text-secondary w-75 mx-auto mb-3">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 id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<!-- First Slider -->
<div class="carousel-item active">
<div class="row g-3">
<!-- First column -->
<div class="col-12 col-md-6 col-lg-6">
<div class=" border rounded-3 p-3 shadow">
<div class=" d-flex flex-row justify-content-between">
<div ><i class="fa-solid fa-quote-right fs-1 text-secondary"></i></div>
<div class=" text-warning"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star-half-stroke"></i></div>
</div>
<div>
<p>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.</p>
</div>
<div class=" d-flex flex-row">
<div><img src="images/student/student-5.png" alt="" class=" me-2" style="width:3rem;height:3rem;"></div>
<div>
<h6 class=" fs-5 fw-semibold">Ashraf Tanvir</h6>
<p class=" text-secondary">Web Developer</p>
</div>
</div>
</div>
</div>
<!-- Second Column -->
<div class="col-12 col-md-6 col-lg-6 d-none d-md-block d-lg-block">
<div class=" border rounded-3 p-3 shadow">
<div class=" d-flex flex-row justify-content-between">
<div ><i class="fa-solid fa-quote-right fs-1 text-secondary"></i></div>
<div class=" text-warning"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star-half-stroke"></i></div>
</div>
<div>
<p>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.</p>
</div>
<div class=" d-flex flex-row">
<div><img src="images/student/student-5.png" alt="" class=" me-2" style="width:3rem;height:3rem;"></div>
<div>
<h6 class=" fs-5 fw-semibold">Ashraf Tanvir</h6>
<p class=" text-secondary">Web Developer</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Second SLider -->
<div class="carousel-item">
<div class="row g-3">
<!-- First Column -->
<div class="col-12 col-md-6 col-lg-6">
<div class=" border rounded-3 p-3 shadow">
<div class=" d-flex flex-row justify-content-between">
<div ><i class="fa-solid fa-quote-right fs-1 text-secondary"></i></div>
<div class=" text-warning"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star-half-stroke"></i></div>
</div>
<div>
<p>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.</p>
</div>
<div class=" d-flex flex-row">
<div><img src="images/student/student-5.png" alt="" class=" me-2" style="width:3rem;height:3rem;"></div>
<div>
<h6 class=" fs-5 fw-semibold">Ashraf Tanvir</h6>
<p class=" text-secondary">Web Developer</p>
</div>
</div>
</div>
</div>
<!-- Second Column -->
<div class="col-12 col-md-6 col-lg-6 d-none d-md-block d-lg-block">
<div class=" border rounded-3 p-3 shadow">
<div class=" d-flex flex-row justify-content-between">
<div ><i class="fa-solid fa-quote-right fs-1 text-secondary"></i></div>
<div class=" text-warning"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star-half-stroke"></i></div>
</div>
<div>
<p>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.</p>
</div>
<div class=" d-flex flex-row">
<div><img src="images/student/student-5.png" alt="" class=" me-2" style="width:3rem;height:3rem;"></div>
<div>
<h6 class=" fs-5 fw-semibold">Ashraf Tanvir</h6>
<p class=" text-secondary">Web Developer</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Third Slider -->
<div class="carousel-item">
<div class="row g-3">
<!-- First Column -->
<div class="col-12 col-md-6 col-lg-6">
<div class=" border rounded-3 p-3 shadow">
<div class=" d-flex flex-row justify-content-between">
<div ><i class="fa-solid fa-quote-right fs-1 text-secondary"></i></div>
<div class=" text-warning"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star-half-stroke"></i></div>
</div>
<div>
<p>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.</p>
</div>
<div class=" d-flex flex-row">
<div><img src="images/student/student-5.png" alt="" class=" me-2" style="width:3rem;height:3rem;"></div>
<div>
<h6 class=" fs-5 fw-semibold">Ashraf Tanvir</h6>
<p class=" text-secondary">Web Developer</p>
</div>
</div>
</div>
</div>
<!-- Second Column -->
<div class="col-12 col-md-6 col-lg-6 d-none d-md-block d-lg-block">
<div class=" border rounded-3 p-3 shadow">
<div class=" d-flex flex-row justify-content-between">
<div ><i class="fa-solid fa-quote-right fs-1 text-secondary"></i></div>
<div class=" text-warning"><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star"></i><i class="fa-solid fa-star-half-stroke"></i></div>
</div>
<div>
<p>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.</p>
</div>
<div class=" d-flex flex-row">
<div><img src="images/student/student-5.png" alt="" class=" me-2" style="width:3rem;height:3rem;"></div>
<div>
<h6 class=" fs-5 fw-semibold">Ashraf Tanvir</h6>
<p class=" text-secondary">Web Developer</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="prev">
<span class="carousel-control-prev-icon bg-info" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls" data-bs-slide="next">
<span class="carousel-control-next-icon bg-info" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
<!-- Student FeedBack Section End Here ------------------------ -->
<!-- Student FeedBack Section End Here ------------------------ -->
<!-- Student FeedBack Section End Here ------------------------ -->
<!-- FAQ Section Start here ------------------- -->
<!-- FAQ Section Start here ------------------- -->
<!-- FAQ Section Start here ------------------- -->
<section class=" container my-5" id="faq">
<div class=" text-center my-4">
<h1 class=" fw-bold mb-4">Frequently Asked Questions</h1>
<p class=" text-secondary w-50 mx-auto mb-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>
<!-- Asked Questin Section -->
<div class="accordion w-75 mx-auto" 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 other services are you compatible with?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" aria-labelledby="headingOne" data-bs-parent="#accordionExample">
<div class="accordion-body">
There are many variations of passages of 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 there isn't anything
embarrassing hidden in the middle of text. All the generators on the.
</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">
I have a technical i need resolved, who do i email?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the second item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</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 other services are you compatible with?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</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 other services are you compatible with?
</button>
</h2>
<div id="collapseFour" class="accordion-collapse collapse" aria-labelledby="headingFour" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>This is the third item's accordion body.</strong> It is hidden by default, until the collapse plugin adds the appropriate classes that we use to style each element. These classes control the overall appearance, as well as the showing and hiding via CSS transitions. You can modify any of this with custom CSS or overriding our default variables. It's also worth noting that just about any HTML can go within the <code>.accordion-body</code>, though the transition does limit overflow.
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section End Here -------------------- -->
<!-- FAQ Section End Here -------------------- -->
<!-- FAQ Section End Here -------------------- -->
<!-- Company section Start Here -->
<!-- Company section Start Here -->
<!-- Company section Start Here -->
<section class="container my-5 bg-info p-4 bg-opacity-10 rounded-3">
<div>
<h1 class=" text-center fw-bold">Trusted by over 800+ companies</h1>
</div>
<div class=" mt-4 d-flex flex-column flex-md-row flex-lg-row justify-content-sm-center justify-content-lg-between align-items-center gap-3">
<div><img src="images/company/company-1.png" alt="Renowed Company Logo With Name." class=" img-fluid"></div>
<div> <img src="images/company/company-2.png" alt="Renowed Company Logo With Name." class=" img-fluid"></div>
<div><img src="images/company/company-3.png" alt="Renowed Company Logo With Name." class=" img-fluid"></div>
<div><img src="images/company/company-4.png" alt="Renowed Company Logo With Name." class=" img-fluid"></div>
<div><img src="images/company/company-5.png" alt="Renowed Company Logo With Name." class=" img-fluid"></div>
</div>
</section>
<!-- Company Section End Here _------- -->
<!-- Company Section End Here _------- -->
<!-- Company Section End Here _------- -->
</main>
<!-- Main Section End HERE ++++++++++++++++++++++ -->
<!-- Main Section End HERE ++++++++++++++++++++++ -->
<!-- Main Section End HERE ++++++++++++++++++++++ -->
<!-- Footer Start Here -------------------- -->
<!-- Footer Start Here -------------------- -->
<footer class=" bg-black p-3 align-items-center">
<div class=" text-center">
<h1 class=" text-light">High5 Edu</h1>
<p class=" text-secondary">Bashundhara R/A , D-Block , Road- 06</p>
<p class=" text-secondary">Privacy Policy | Terms of Use</p>
<a class=" p-2" href="https://www.facebook.com/"><i class="fa-brands fa-facebook text-info fs-4"></i></a>
<a class=" p-2" href="https://www.instagram.com/"><i class="fa-brands fa-instagram text-info fs-4"></i></a>
<a class=" p-2" href="https://www.linkedin.com/in/ashraf-tanvir-043864223/"><i class="fa-brands fa-linkedin text-info fs-4"></i></a>
</div>
</footer>
<!-- Footer End Here -------------------- -->
<!-- Footer End Here -------------------- -->
<!-- Footer End Here -------------------- -->
<!-- Bootstrap CDN Here -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>