-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
556 lines (484 loc) · 23.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>EduHub</title>
<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 -->
<script src="https://kit.fontawesome.com/7f2bbd371e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<!-- NavBar Starts -->
<header class="container">
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand fw-bolder fs-1" href="#">EduHub</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 justify-content-center navbar-collapse mb-2 mb-lg-0 fs-4">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link active">Deals</a>
</li>
<li class="nav-item">
<a class="nav-link active">Success</a>
</li>
<li class="nav-item">
<a class="nav-link active">About</a>
</li>
<li class="nav-item">
<a class="nav-link active">Register</a>
</li>
</ul>
<button class="btn btn-outline-success fs-3" type="submit">
Register
</button>
</form>
</div>
</div>
</nav>
</header>
<!-- NavBar Ends -->
<!-- Slider Starts -->
<section class="container mt-5">
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/cover/cover-1.png" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h1>Try To Learn Something New</h1>
<h5>Live as if you were to die tomorrow, learn as if you were to live forever</h5>
<button class="get-started-btn rounded px-5 py-3 fw-semibold fs-5 border-0">Get Started</button>
</div>
</div>
<div class="carousel-item">
<img src="images/cover/cover-2.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h1>Try To Learn Something New</h1>
<h5>Education replaces empty mind with positive thoughts</h5>
<button class="get-started-btn rounded px-5 py-3 fw-semibold fs-5 border-0">Get Started</button>
</div>
</div>
<div class="carousel-item">
<img src="images/cover/cover-3.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h1>Try To Learn Something New</h1>
<h5>Education changes your bad today into good tomorrow</h5>
<button class="get-started-btn rounded px-5 py-3 fw-semibold fs-5 border-0">Get Started</button>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls" 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="#carouselExampleControls" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
<!-- Slider Ends -->
<!-- Text Field Starts -->
<section class="container mt-5 fw-semibold">
<div class="text-lg-center">
<h2>Discover Our Popular <br>
Courses</h2>
<p>We are offering tons of courses <br>
you just need to be focused and committed to complete by your heart.</p>
</div>
</section>
<!-- Text Field Ends -->
<!-- Cards Starts -->
<section>
<div class="container text-center">
<div class="row row-cols-2">
<div class="col"><div class="mt-5">
<div class="card mb-3" style="max-width: 640px;">
<div class="row g-0">
<div class="col-6 col-md-4">
<img src="images/course/course-1.png" class="img-fluid rounded-start pe-3" alt="...">
</div>
<div class="col-md-8">
<div class="card-body text-start">
<h5 class="card-title">Fundamental Of UI/UX Design</h5>
<p class="card-text">A complete design education for product designers: Research the user experience, then design a great user interface.</p>
<p class="card-text fs-5 text-primary">Price: 20$</p>
</div>
</div>
</div>
</div>
</div></div>
<div class="col"><div class="mt-5">
<div class="card mb-3" style="max-width: 640px;">
<div class="row g-0">
<div class="col-6 col-md-4">
<img src="images/course/course-2.png" class="img-fluid rounded-start pe-3" alt="...">
</div>
<div class="col-md-8">
<div class="card-body text-start">
<h5 class="card-title">Javascript Basic to advanced</h5>
<p class="card-text">The modern JavaScript course for everyone! Master JavaScript with projects, challenges and theory. Many courses in one!</p>
<p class="card-text fs-5 text-primary">Price: 20$</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col"><div class="mt-5">
<div class="card mb-3" style="max-width: 640px;">
<div class="row g-0">
<div class="col-6 col-md-4">
<img src="images/course/course-3.png" class="img-fluid rounded-start pe-3" alt="...">
</div>
<div class="col-md-8">
<div class="card-body text-start">
<h5 class="card-title">Fullstack Web Development</h5>
<p class="card-text">Full stack web development. Up full stack developer career with HTML CSS Javascript, React JS, Angular, NodeJS, MongoDB</p>
<p class="card-text fs-5 text-primary">Price: 20$</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col"><div class="col"><div class="mt-5">
<div class="card mb-3" style="max-width: 640px;">
<div class="row g-0">
<div class="col-6 col-md-4">
<img src="images/course/course-4.png" class="img-fluid rounded-start pe-3" alt="...">
</div>
<div class="col-md-8">
<div class="card-body text-start">
<h5 class="card-title">Digital Marketing</h5>
<p class="card-text">Find success in a new industry using this totally effective secret strategy.So Lets and rule the todays market.</p>
<p class="card-text fs-5 text-primary">Price: 20$</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col"><div class="col"><div class="mt-5">
<div class="card mb-3" style="max-width: 640px;">
<div class="row g-0">
<div class="col-6 col-md-4">
<img src="images/course/course-5.png" class="img-fluid rounded-start pe-3" alt="...">
</div>
<div class="col-md-8">
<div class="card-body text-start">
<h5 class="card-title">Photography Basic Rules</h5>
<p class="card-text">A Beginners Guide and introduction to the art of traditional photography. Learn the basics alongside traditional skills.</p>
<p class="card-text fs-5 text-primary">Price: 20$</p>
</div>
</div>
</div>
</div>
</div>
</div></div>
<div class="col"><div class="col"><div class="mt-5">
<div class="card mb-3" style="max-width: 640px;">
<div class="row g-0">
<div class="col-6 col-md-4">
<img src="images/course/course-6.png" class="img-fluid rounded-start pe-3" alt="...">
</div>
<div class="col-md-8">
<div class="card-body text-start">
<h5 class="card-title">Motion Graphics</h5>
<p class="card-text">Using Adobe After Effects create beautiful VFX Visual Effects, data visualization & VFX Compositing for everyone.</p>
<p class="card-text fs-5 text-primary">Price: 20$</p>
</div>
</div>
</div>
</div>
</div>
</div></div>
</div>
</div>
<div class="more-courses text-center mt-5">
<button class="get-started-btn rounded px-5 py-3 fw-semibold fs-5 border-0">See More Courses</button>
</div>
</section>
<!-- Cards Endss -->
<!-- Explore E-Learning Institute Part Starts -->
<section class="container mt-5">
<div class="d-flex">
<div>
<img src="images/working.png" alt="">
</div>
<div class="bg-explore border p-lg-5">
<h1 class="fw-bold">Explore E-Learning <br> Institute</h1>
<p class="fs-4 pt-5 fw-light">As alluded to at the beginning of this section, the discussion of whether to use virtual or physical learning environments is unlikely to yield an answer in the current format. <br><br> First, the efficacy of the learning environment may depend on the concept being taught. Additionally, comparisons provide differences in learning theories as explanations for the differences between virtual and physical environments as a post-mortem explanation.</p>
<div class="d-flex justify-content-around">
<div>
<h1 class="fw-bold">3.2K+</h1>
<p class="fs-4 pt-1">Online Courses</p>
</div>
<div>
<h1 class="fw-bold">600+</h1>
<p class="fs-4 pt-1">Expert Member</p>
</div>
<div>
<h1 class="fw-bold">1K+</h1>
<p class="fs-4 pt-1">Rating Review</p>
</div>
</div>
<div class="more-courses text-start">
<button class="get-started-btn rounded px-5 py-3 fw-semibold fs-5 border-0">Read More</button>
</div>
</div>
</div>
</section>
<!-- Explore E-Learning Institute Part Ends -->
<!-- Ready to Join Starts -->
<section class="container mt-lg-5">
<div class="d-flex get-started-btn p-lg-5 justify-content-around align-items-center rounded">
<div class="text-white">
<h1 class="fw-bolder">Ready to join?</h1>
<p class="fs-4 pe-5">Comparisons provide differences in learning theories as explanations for the differences between <br> virtual and physical environments as a post-mortem explanation.</p>
</div>
<!-- Modal Button -->
<div>
<!-- Button trigger modal -->
<button type="button" class="rounded px-5 fw-semibold fs-5 border-0" 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">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Hello Programming Hero</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
This is a modal for my bonus mark....!!!
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
</section>
<!-- Ready to Join Ends -->
<!-- Successful Students Part starts -->
<section class="container mt-5">
<div>
<div>
<h2 class="fs-1 fw-bold">Meet Our Successful <br>
Students</h2>
<p class="fw-light fs-5">We are offering tons of courses <br>
you just need to be focused and committed to complete by your heart.</p>
</div>
<div class="mt-lg-5">
<div class="card-group row row-cols-1 row-cols-md-3">
<div class="card">
<img src="images/student/student-1.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Tom Cruise</h5>
<p class="card-text">It was a great journey with eduhub.The learning was fun and we enjoyed a lot</p>
</div>
</div>
<div class="card">
<img src="images/student/student-2.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Amber Heard</h5>
<p class="card-text">It was a great journey with eduhub.The learning was fun and we enjoyed a lot</p>
</div>
</div>
<div class="card">
<img src="images/student/student-3.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Johny Depp</h5>
<p class="card-text">It was a great journey with eduhub.The learning was fun and we enjoyed a lot.</p>
</div>
</div>
<div class="card">
<img src="images/student/student-4.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Angelina Jolie</h5>
<p class="card-text">It was a great journey with eduhub.The learning was fun and we enjoyed a lot.</p>
</div>
</div>
</div>
</div>
<div class="more-courses text-center mt-5">
<button class="get-started-btn rounded px-5 py-3 fw-semibold fs-5 border-0">View All</button>
</div>
</div>
</section>
<!-- Successful Students Part Endss -->
<!-- Students Feedback Starts-->
<section class="container mt-5">
<div>
<div class="text-lg-center fw-bold">
<h2>Some Students Feedback</h2>
<p class="fw-light fs-5">Lots of students are working worldwide <br>
you just need to be focused and committed,You'll be one of them.</p>
</div>
<div class="d-flex justify-content-between mt-5">
<div class="border border-secondary p-4">
<div>
<img src="images/comma.png" alt="">
<p class="mt-3">It was a great journey with eduhub. <br> The learning was fun and we enjoyed a lot. <br> It was a great journey with eduhub. The learning was fun and we enjoyed a lot
</div>
<div class="d-flex align-items-center">
<div>
<img src="images/student/student-5.png" alt="">
</div>
<div class="pt-3 ps-2">
<p>Awlad Hossain <br>
<small>UI Designer</small></p>
</div>
</div>
</div>
<div class="border border-secondary p-4">
<div>
<img src="images/comma.png" alt="">
<p class="mt-3">It was a great journey with eduhub. <br> The learning was fun and we enjoyed a lot. <br> It was a great journey with eduhub. The learning was fun and we enjoyed a lot
</div>
<div class="d-flex align-items-center">
<div>
<img src="images/student/student-6.png" alt="">
</div>
<div class="pt-3 ps-2">
<p>Shanta Islam <br>
<small>Web Designer</small></p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Students Feedback Ends-->
<!-- FAQ Starts -->
<section class="container mt-5">
<div>
<div class="text-lg-center fw-bold">
<h2 class=" fw-bold fs-1">Frequently Asked Question</h2>
<p class="fw-light fs-5">Lots of students are working worldwide <br>
Let's see what they want to ask.</p>
</div>
<div>
<div class="accordion" id="accordionPanelsStayOpenExample">
<div class="accordion-item">
<h2 class="accordion-header" id="panelsStayOpen-headingOne">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#panelsStayOpen-collapseOne" aria-expanded="true" aria-controls="panelsStayOpen-collapseOne">
Difference between flexbox and grid system
</button>
</h2>
<div id="panelsStayOpen-collapseOne" class="accordion-collapse collapse show" aria-labelledby="panelsStayOpen-headingOne">
<div class="accordion-body">
<strong>Here is the difference...</strong> Grid is made for two-dimensional layout while Flexbox is for one. This means Flexbox can work on either row or columns at a time, but Grids can work on both. <br>
Flexbox, gives you more flexibility while working on either element (row or column).
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="panelsStayOpen-headingTwo">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#panelsStayOpen-collapseTwo" aria-expanded="false" aria-controls="panelsStayOpen-collapseTwo">
Difference between bootstrap and tailwind
</button>
</h2>
<div id="panelsStayOpen-collapseTwo" class="accordion-collapse collapse" aria-labelledby="panelsStayOpen-headingTwo">
<div class="accordion-body">
<strong>The main difference between </strong>Bootstrap and Tailwind is that Bootstrap pre-built components that provide a responsive UI (user interface) kit. On the other hand, Tailwind comes with predesigned widgets that facilitate web developers to design a website from scratch. Both Bootstrap and Tailwind are two of the best front-end CSS framework used worldwide.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="panelsStayOpen-headingThree">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#panelsStayOpen-collapseThree" aria-expanded="false" aria-controls="panelsStayOpen-collapseThree">
What is css box model?
</button>
</h2>
<div id="panelsStayOpen-collapseThree" class="accordion-collapse collapse" aria-labelledby="panelsStayOpen-headingThree">
<div class="accordion-body">
<strong>CSS box model is a container which contains</strong> 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.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="panelsStayOpen-headingFour">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#panelsStayOpen-collapseFour" aria-expanded="false" aria-controls="panelsStayOpen-collapseFour">
What is a semantic tag?
</button>
</h2>
<div id="panelsStayOpen-collapseFour" class="accordion-collapse collapse" aria-labelledby="panelsStayOpen-headingFour">
<div class="accordion-body">
Basically Semantic tags are those tags which <strong> clearly defines its content</strong>. In other terms semantic tags are those tags whose name can easily let you know which type of content take place in it. Like <header>, <section>, <article> and <footer>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Ends -->
<!-- Truted Company Starts -->
<section class="container mt-5">
<div>
<div class="text-lg-center">
<h1 class=" fw-bold fs-1">Trusted By Over 800+ Companies</h1>
<div class="d-flex justify-content-between mt-5">
<img src="images/company/company-1.png" alt="">
<img src="images/company/company-2.png" alt="">
<img src="images/company/company-3.png" alt="">
<img src="images/company/company-4.png" alt="">
<img src="images/company/company-5.png" alt="">
<img src="images/company/company-6.png" alt="">
</div>
</div>
</div>
</section>
<!-- Truted Company Ends -->
<!-- Footer Starts -->
<footer class="mt-5">
<div class="bg-dark">
<div class="text-lg-center fw-bold text-white py-5">
<h1 class=" fw-bold fs-1">EduHub</h1>
<p>Office 41, Zawaya Buildin, Ghala Muscat, <br>
Sultanate of Oman <br>
Privacy Ploicy | Terms of us</p>
<div class="fs-1 d-flex justify-content-center">
<p><a href="facebook.com"><i class="fa-brands fa-facebook-square p-3"></i></a></p>
<p><a href="https://www.instagram.com/"><i class="fa-brands fa-instagram-square p-3"></i></a></p>
<p><a href="https://twitter.com/"><i class="fa-brands fa-twitter-square p-3"></i></a></p>
</div>
</div>
</div>
</footer>
<!-- Footer Ends -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"
></script>
</body>
</html>