-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
539 lines (496 loc) · 26.1 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>EdTech Webpage</title>
<!-- fav-icon -->
<!-- css-link mian.css -->
<link rel="stylesheet" href="./main.css">
<!-- font-awsome -->
<script src="https://kit.fontawesome.com/f5ed09c428.js" crossorigin="anonymous"></script>
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<!-- google-fonts -->
</head>
<body>
<!-- navbar-start -->
<header id="Home">
<nav class="navbar navbar-expand-lg py-4">
<div class="container">
<a class="navbar-brand" href="#">
<span ><img src="./img/company/company-2.png"/></i></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 ms-auto mb-2 mb-lg-0 w-100 d-flex ">
<li class="nav-item">
<a class="nav-link active ms-4" aria-current="page" href="#Home">Home</a>
</li>
<li class="nav-item ms-4">
<a class="nav-link" href="#courses">Courses</a>
</li>
<li class="nav-item ms-4">
<a class="nav-link" href="#Questions">Questions</a>
</li>
<li class="nav-item ms-4">
<a class="nav-link" href="#Success">Success</a>
</li>
<li class="nav-item ms-4 me-5">
<a class="nav-link" href="#About">About</a>
</li>
</ul>
<form class="d-flex" role="search">
<a href="#Register" class="btn btn-outline-info py-2 px-4" type="submit">Register</a>
</form>
</div>
</div>
</nav>
</header>
<!-- navbar-end -->
<!-- carosol-start -->
<section class="container mb-5">
<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="./img/cover/cover-1.png" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block bg-dark bg-opacity-50 rounded ">
<h1 class="fw-bold">Get Started Digital <br> Learning</h1>
<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>
<button class="btn btn-info text-white py-2 px-4 mb-3" type="submit">Get
Started</button>
</div>
</div>
<div class="carousel-item">
<img src="./img/cover/cover-2.png" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block bg-dark bg-opacity-50 rounded">
<h1 class="fw-bold">Get Started Digital <br> Learning</h1>
<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>
<button class="btn btn-info text-white py-2 px-4 mb-3" type="submit">Get
Started</button>
</div>
</div>
<div class="carousel-item">
<img src="img/cover/cover-3.png" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block bg-dark bg-opacity-50 rounded">
<h1 class="fw-bold">Get Started Digital <br> Learning</h1>
<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>
<button class="btn btn-info text-white py-2 px-4 mb-3" 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>
</section>
<!-- carosol-end -->
<!-- Courses -->
<section class="section-gap container mb-5" id="courses">
<div class="text-center ">
<h1 class="fw-semibold ">Discover Our Popular <br> Courses</h1>
<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="courses mt-4">
<div class="row">
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="card mb-3" style="max-width: 540px;">
<div class="row g-0">
<div class="col-lg-4 col-md-4 col-sm-12" id="course-img">
<img src="./img/course/course-1.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title fw-bold">Fundamental Of UI/UX Design</h5>
<p class="card-text">Some quick example text to build on the card title and make
up the
bulk of the card.</p>
<p class="card-text fw-semibold"><small class="text-primary">Price : 20$</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12">
<div class="card mb-3" style="max-width: 540px;">
<div class="row g-0">
<div class="col-md-4">
<img src="./img/course/course-2.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title fw-bold">Javascript Basic to advanced</h5>
<p class="card-text">Some quick example text to build on the card title and make
up the
bulk of the card.</p>
<p class="card-text fw-semibold"><small class="text-primary">Price : 20$</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 ">
<div class="card mb-3" style="max-width: 540px;">
<div class="row g-0">
<div class="col-md-4">
<img src="./img/course/course-3.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title fw-bold">Fullstack Web Development</h5>
<p class="card-text">Some quick example text to build on the card title and make
up the
bulk of the card.</p>
<p class="card-text fw-semibold"><small class="text-primary">Price : 20$</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 ">
<div class="card mb-3" style="max-width: 540px;">
<div class="row g-0">
<div class="col-md-4">
<img src="./img/course/course-4.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title fw-bold">Digital Marketing</h5>
<p class="card-text">Some quick example text to build on the card title and make
up the
bulk of the card.</p>
<p class="card-text fw-semibold"><small class="text-primary">Price : 20$</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 ">
<div class="card mb-3" style="max-width: 540px;">
<div class="row g-0">
<div class="col-md-4">
<img src="./img/course/course-5.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title fw-bold">Photography Basic Rules</h5>
<p class="card-text">Some quick example text to build on the card title and make
up the
bulk of the card.</p>
<p class="card-text fw-semibold"><small class="text-primary">Price : 20$</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 ">
<div class="card mb-3" style="max-width: 540px;">
<div class="row g-0">
<div class="col-md-4">
<img src="./img/course/course-6.png" class="img-fluid rounded-start" alt="...">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title fw-bold">Motion Graphics</h5>
<p class="card-text">Some quick example text to build on the card title and make
up the
bulk of the card.</p>
<p class="card-text fw-semibold"><small class="text-primary">Price : 20$</small>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="text-center mt-4">
<button class="btn btn-info text-white py-2 px-4 mb-3 d-inline" type="submit">See More
Courses</button>
</div>
</div>
</div>
</section>
<!-- about section -->
<section class="container mb-5" id="About">
<div class="row">
<div class="col-lg-6 col-md-5 col-sm-12 d-flex justify-content-end p-0">
<img src="./img/working.png" class="img-fluid w-100" alt="">
</div>
<div class="col-lg-6 col-md-7 col-sm-12 d-flex flex-column justify-content-evenly bg-light p-4 ">
<div>
<h1 class="fw-bold">Explore The elearning Institute</h1>
<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 Ipsum, you need to be
sure. <br> <br>
Anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the
Internet tend to repeat predefined.</p>
</div>
<div class="">
<div class="d-flex justify-content-between mb-4">
<div>
<h1 class="fw-bold">3.2K+</h1>
<small>Online Course</small>
</div>
<div>
<h1 class="fw-bold">600+</h1>
<small>Expert member</small>
</div>
<div>
<h1 class="fw-bold">1k+</h1>
<small>Rating & Review</small>
</div>
</div>
<button class="btn btn-info text-white">Read More</button>
</div>
</div>
</div>
</section>
<!-- Register Now section -->
<section class="container mb-5 " id="Register">
<div class="row bg-info p-5 text-white rounded">
<div class="col-lg-6 col-md-12 col-sm-12">
<h1>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 class="col-lg-6 col-md-12 col-sm-12 d-flex justify-content-end align-items-center">
<!-- Button trigger modal -->
<button type="button" class="btn btn-light text-info" 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 text-info" id="exampleModalLabel">Register Now</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"
aria-label="Close"></button>
</div>
<div class="modal-body">
<p class="text-black">Join now!</p>
<small class="text-black">It is a long established fact that a reader will be
distracted by the readable content of a page when looking at its layout.</small>
</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>
</div>
</div>
</section>
<!-- team members -->
<section class="container mb-5" id="Success">
<div class="">
<h1 class="fw-semibold ">Meet Our Successfull <br> Students</h1>
<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 g-4 mt-4">
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card">
<img src="./img/student/student-1.png" class="card-img-top" alt="...">
<div class="card-body">
<p class="card-text">
<h5 class="fw-bold">Awlad Hossain </h5>
<small class="text-muted">UIUX Designer</small>
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card">
<img src="./img/student/student-2.png" class="card-img-top" alt="...">
<div class="card-body">
<p class="card-text">
<h5 class="fw-bold">Jannatul Islam</h5>
<small class="text-muted">Motion Graphics
</small>
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card">
<img src="./img/student/student-3.png" class="card-img-top" alt="...">
<div class="card-body">
<p class="card-text">
<h5 class="fw-bold">Olivia </h5>
<small class="text-muted">Photograph</small>
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="card">
<img src="./img/student/student-4.png" class="card-img-top" alt="...">
<div class="card-body">
<p class="card-text">
<h5 class="fw-bold">Emma </h5>
<small class="text-muted">Fullstack</small>
</p>
</div>
</div>
</div>
<div class="text-center mt-4">
<button class="btn btn-info text-white">View All</button>
</div>
</div>
</section>
<!-- Asked Questions -->
<section class="container" id="Questions">
<div class="text-center ">
<h1 class="fw-semibold ">Frequently Asked Questions</h1>
<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="mt-4 d-flex justify-content-center">
<div class="accordion w-75" 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">
What is the difference between Flexbox and Grid?
</button>
</h2>
<div id="panelsStayOpen-collapseOne" class="accordion-collapse collapse show"
aria-labelledby="panelsStayOpen-headingOne">
<div class="accordion-body">
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.
Flexbox, gives you more flexibility while working on either element (row or column). HTML markup and CSS will be easy to manage in this type of scenario.
</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">
What is the difference between Bootstrap vs Tailwind CSS?
</button>
</h2>
<div id="panelsStayOpen-collapseTwo" class="accordion-collapse collapse"
aria-labelledby="panelsStayOpen-headingTwo">
<div class="accordion-body">
Bootstrap is much larger than Tailwind and requires multiple files to access its full functionality. Because of this, using Bootstrap means a significantly larger file size than Tailwind. Bootstrap also offers mobile-first, responsive components pre-styled to create flawless website pages quickly.
</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 box modal in CSS?
</button>
</h2>
<div id="panelsStayOpen-collapseThree" class="accordion-collapse collapse"
aria-labelledby="panelsStayOpen-headingThree">
<div class="accordion-body">
In CSS, the term "box model" is used when talking about design and layout.
The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the actual content.
</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 are semantic tags?
</button>
</h2>
<div id="panelsStayOpen-collapseFour" class="accordion-collapse collapse"
aria-labelledby="panelsStayOpen-headingFour">
<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.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- brands -->
<section class="container mb-5 mt-5 d-none d-lg-block">
<div class="">
<h1 class="text-center fw-semibold ">Trusted by over 800+ companies</h1>
<div class="d-flex justify-content-between align-items-center mt-5">
<div>
<img src="./img/company/company-1.png" alt="" class="img-fluid">
</div>
<div>
<img src="./img/company/company-2.png" alt="" class="img-fluid">
</div>
<div>
<img src="./img/company/company-3.png" alt="" class="img-fluid">
</div>
<div>
<img src="./img/company/company-4.png" alt="" class="img-fluid">
</div>
<div>
<img src="./img/company/company-5.png" alt="" class="img-fluid">
</div>
<div>
<img src="./img/company/company-6.png" alt="" class="img-fluid">
</div>
</div>
</div>
</section>
</main>
<!-- footer -->
<footer class="bg-dark mt-5">
<div class="container">
<div class="text-white p-5 ">
<h2 class="text-center mb-4">Udemy</h2>
<p class="text-center ">Chittagong,bangladesh</p>
<small class="d-block text-center ">Privacy Ploicy | Terms of use</small>
<div class="text-center">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-twitter ms-3"></i>
<i class="fa-brands fa-instagram ms-3"></i>
<i class="fa-brands fa-github ms-3"></i>
</div>
</div>
</div>
</footer>
<!-- bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
</body>
</html>