-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
496 lines (480 loc) · 25.5 KB
/
Copy pathindex.html
File metadata and controls
496 lines (480 loc) · 25.5 KB
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
<!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>Document</title>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/fa27bc392d.js" crossorigin="anonymous"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" />
<!-- Custom css -->
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<header>
<!-- nav -->
<nav class="navbar navbar-expand-lg bg-white">
<div class="container">
<a class="navbar-brand fw-bold" href="#">Pro Edu</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 fw-semibold">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#courses">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#register">Deals</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#success">Success</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#register">Register</a>
</li>
</ul>
<span class="navbar-text">
<button class="btn btn-outline-primary" data-bs-toggle="modal" data-bs-target="#registerModal">Register</button>
</span>
</div>
</div>
</nav>
<!-- Modal Register -->
<div class="modal fade" id="registerModal" tabindex="-1" aria-labelledby="registerModalLabel" aria-hidden="true" data-bs-backdrop="static">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="registerModalLabel">Register</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- form -->
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" />
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" />
</div>
<button type="submit" class="btn btn-primary">Register</button>
</form>
</div>
</div>
</div>
</div>
<!-- -->
<!-- Banner -->
<section class="container my-md-3">
<div id="carouselExampleCaptions" 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-flex flex-column justify-content-center align-items-center top-0 px-2">
<h1 class="fs-big fw-bold d-none d-md-block"><span class="d-block">Get Started Digital</span> Learning</h1>
<h1 class="fs-1 fw-bold d-md-none"><span class="d-block">Get Started Digital</span> Learning</h1>
<p class="w-75">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>
<button class="btn btn-primary fw-semibold">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-flex flex-column justify-content-center align-items-center top-0 px-2">
<h1 class="fs-big fw-bold d-none d-md-block"><span class="d-block">Get Started Digital</span> Learning</h1>
<h1 class="fs-1 fw-bold d-md-none"><span class="d-block">Get Started Digital</span> Learning</h1>
<p class="w-75">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>
<button class="btn btn-primary fw-semibold">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-flex flex-column justify-content-center align-items-center top-0 px-2">
<h1 class="fs-big fw-bold d-none d-md-block"><span class="d-block">Get Started Digital</span> Learning</h1>
<h1 class="fs-1 fw-bold d-md-none"><span class="d-block">Get Started Digital</span> Learning</h1>
<p class="w-75">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>
<button class="btn btn-primary fw-semibold">Get Started</button>
</div>
</div>
</div>
<button class="carousel-control-prev d-none d-md-block" 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 d-none d-md-block" 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>
</header>
<main>
<!-- Popular Courses -->
<section id="courses" class="container my-5">
<h1 class="fw-semibold text-center"><span class="d-md-block">Discover Our Popular</span> Courses</h1>
<p class="w-75 mx-auto text-center mb-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>
<div class="row row-cols-1 row-cols-lg-2 g-4">
<div class="col">
<div class="row row-cols-1 g-3 shadow">
<div class="col col-md-4">
<img class="w-100 course-img" src="./images/course/course-1.png" alt="" />
</div>
<div class="col col-md-8 d-flex align-items-center">
<div>
<h5>Fundamental Of UI/UX Design</h5>
<p>Some quick example text to build on the card title and make up the bulk of the card.</p>
<h5 class="text-primary">Price : 20$ </h5>
</div>
</div>
</div>
</div>
<div class="col">
<div class="row row-cols-1 g-3 shadow">
<div class="col col-md-4">
<img class="w-100 course-img" src="./images/course/course-2.png" alt="" />
</div>
<div class="col col-md-8 d-flex align-items-center">
<div>
<h5>Javascript Basic to advanced </h5>
<p>Some quick example text to build on the card title and make up the bulk of the card.</p>
<h5 class="text-primary">Price : 20$ </h5>
</div>
</div>
</div>
</div>
<div class="col">
<div class="row row-cols-1 g-3 shadow">
<div class="col col-md-4">
<img class="w-100 course-img" src="./images/course/course-3.png" alt="" />
</div>
<div class="col col-md-8 d-flex align-items-center">
<div>
<h5>Fullstack Web Development </h5>
<p>Some quick example text to build on the card title and make up the bulk of the card.</p>
<h5 class="text-primary">Price : 20$ </h5>
</div>
</div>
</div>
</div>
<div class="col">
<div class="row row-cols-1 g-3 shadow">
<div class="col col-md-4">
<img class="w-100 course-img" src="./images/course/course-4.png" alt="" />
</div>
<div class="col col-md-8 d-flex align-items-center">
<div>
<h5>Digital Marketing </h5>
<p>Some quick example text to build on the card title and make up the bulk of the card.</p>
<h5 class="text-primary">Price : 20$ </h5>
</div>
</div>
</div>
</div>
<div class="col">
<div class="row row-cols-1 g-3 shadow">
<div class="col col-md-4">
<img class="w-100 course-img" src="./images/course/course-5.png" alt="" />
</div>
<div class="col col-md-8 d-flex align-items-center">
<div>
<h5>Photography Basic Rules </h5>
<p>Some quick example text to build on the card title and make up the bulk of the card.</p>
<h5 class="text-primary">Price : 20$ </h5>
</div>
</div>
</div>
</div>
<div class="col">
<div class="row row-cols-1 g-3 shadow">
<div class="col col-md-4">
<img class="w-100 course-img" src="./images/course/course-6.png" alt="" />
</div>
<div class="col col-md-8 d-flex align-items-center">
<div>
<h5>Motion Graphics </h5>
<p>Some quick example text to build on the card title and make up the bulk of the card.</p>
<h5 class="text-primary">Price : 20$ </h5>
</div>
</div>
</div>
</div>
</div>
<button class="btn btn-primary fw-semibold my-2 d-block mx-auto">See More Courses</button>
</section>
<!-- portfolio -->
<section id="about" class="container my-5">
<div class="row row-cols-1 g-0">
<div class="col col-md-5 shadow">
<img class="w-100 working-img" src="./images/working.png" alt="" />
</div>
<div class="col col-md-7 d-flex align-items-center p-3 bg-ligthcream shadow">
<div>
<h2 class="fw-semibold"><span class="d-block">Explore The elearning</span> Institute</h2>
<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.
</p>
<p>Anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined.</p>
<div class="row row-cols-2 row-cols-lg-3">
<div class="col">
<h1 class="fs-2 fw-bold">3.2k+</h1>
<p>Online Course</p>
</div>
<div class="col">
<h1 class="fs-2 fw-bold">600+</h1>
<p>Expert member </p>
</div>
<div class="col">
<h1 class="fs-2 fw-bold">1k+</h1>
<p>Rating & Review </p>
</div>
</div>
<button class="btn btn-primary fw-semibold">Read More</button>
</div>
</div>
</div>
</section>
<!-- Join now -->
<section id="register" class="container my-5">
<div class="p-5 bg-primary rounded-4 d-lg-flex justify-content-between">
<div class="d-none d-lg-block text-white">
<h2 class="fw-semibold">Ready to join?</h2>
<p class="w-50">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="d-lg-none text-center text-white">
<h2 class="fw-semibold">Ready to join?</h2>
<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="d-flex align-items-center justify-content-center">
<button class="btn btn-lg btn-light text-primary" data-bs-toggle="modal" data-bs-target="#registerModal">Register Now</button>
</div>
</div>
</section>
<!-- Successful Students -->
<section id="success" class="container my-5">
<h1>Meet Our Successful 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 class="row row-cols-1 row-cols-md-2 row-cols-lg-4 g-3">
<div class="col">
<div class="card">
<img src="./images/student/student-1.png" class="w-100 students-img" alt="..." />
<div class="card-body text-center">
<h5 class="card-title fw-semibold">Awlad Hossain </h5>
<p class="card-text">UIUX Designer </p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="./images/student/student-2.png" class="w-100 students-img" alt="..." />
<div class="card-body text-center">
<h5 class="card-title fw-semibold">Jannatul Islam </h5>
<p class="card-text">Motion Design </p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="./images/student/student-3.png" class="w-100 students-img" alt="..." />
<div class="card-body text-center">
<h5 class="card-title fw-semibold">Imran Hossain </h5>
<p class="card-text">Graphic Designer </p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="./images/student/student-1.png" class="w-100 students-img" alt="..." />
<div class="card-body text-center">
<h5 class="card-title fw-semibold">Nishi Akter </h5>
<p class="card-text">Web Developer </p>
</div>
</div>
</div>
</div>
<div class="d-flex align-items-center justify-content-center my-3">
<button class="btn btn-lg btn-primary fw-semibold">View All</button>
</div>
</section>
<!-- review -->
<section class="container my-5">
<h1 class="fw-semibold text-center">Some Students Feedback</h1>
<p class="text-center">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 class="row row-cols-1 row-cols-lg-2 g-3">
<div class="col">
<div class="card p-3 position-relative">
<div class="d-flex justify-content-between align-items-center pb-2">
<img class="img-fluid" src="./images/comma.png" alt="" />
<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-regular fa-star"></i>
</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 class="d-flex">
<img src="./images/student/student-5.png" alt="" width="60px" height="60px" />
<div class="px-3 py-2">
<h6 class="fw-bold mb-0">Awlad Hossain </h6>
<small>UI Designer</small>
</div>
</div>
<!-- prev arrow btn -->
<div class="d-none d-lg-block bg-primary rounded-circle position-absolute top-50 start-0 translate-middle"><i class="fa-solid fa-chevron-left p-2"></i></div>
</div>
</div>
<div class="col">
<div class="card p-3 position-relative">
<div class="d-flex justify-content-between align-items-center pb-2">
<img class="img-fluid" src="./images/comma.png" alt="" />
<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-regular fa-star"></i>
</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 class="d-flex">
<img src="./images/student/student-6.png" alt="" width="60px" height="60px" />
<div class="px-3 py-2">
<h6 class="fw-bold mb-0">Shanta Akter </h6>
<small>Graphic Designer </small>
</div>
</div>
<!-- next arrow btn -->
<div class="d-none d-lg-block bg-primary rounded-circle position-absolute top-50 start-100 translate-middle"><i class="fa-solid fa-chevron-right p-2"></i></div>
</div>
</div>
</div>
</section>
<!-- Frequently Asked Question -->
<section class="container my-5">
<div class="text-center">
<h1>Frequently Asked Questions</h1>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration.</p>
<div class="px-lg-5 mx-lg-5">
<div class="accordion px-md-5 px-lg-5 mx-lg-5" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button fw-semibold" 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 fw-semibold" 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">
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="headingThree">
<button class="accordion-button collapsed fw-semibold" 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">
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="headingFour">
<button class="accordion-button collapsed fw-semibold" 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">
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>
</div>
</div>
</section>
<!-- Companies -->
<section class="container my-5 d-none d-lg-block">
<h3 class="fw-semibold text-center my-3">Trusted by over 800+ companies</h3>
<div class="row row-cols-6 g-3">
<div class="col">
<img class="w-100 p-2" src="./images/company/company-1.png" height="30px" alt="" />
</div>
<div class="col">
<img class="w-100 p-2" src="./images/company/company-2.png" height="30px" alt="" />
</div>
<div class="col">
<img class="w-100 p-2" src="./images/company/company-3.png" height="30px" alt="" />
</div>
<div class="col">
<img class="w-100 p-2" src="./images/company/company-4.png" height="30px" alt="" />
</div>
<div class="col">
<img class="w-100 p-2" src="./images/company/company-5.png" height="30px" alt="" />
</div>
<div class="col">
<img class="w-100 p-2" src="./images/company/company-6.png" height="30px" alt="" />
</div>
</div>
</section>
</main>
<!-- footer -->
<footer class="bg-dark text-white d-flex justify-content-center">
<div class="py-5 text-center">
<h3 class="fw-semibold">Pro Edu</h3>
<p>Office 41, Zawaya Buildin, Ghala Muscat, </p>
<p>Sultanate of Oman</p>
<p>Privacy Ploicy | Terms of use</p>
<div class="fs-3">
<a target="_blank" class="text-decoration-none text-white" href="https://www.facebook.com/arifulsajib347/">
<i class="fa-brands fa-facebook me-3"></i>
</a>
<a target="_blank" class="text-decoration-none text-white" href="https://twitter.com/arifulsajib347">
<i class="fa-brands fa-square-twitter me-3"></i>
</a>
<a target="_blank" class="text-decoration-none text-white" href="https://www.linkedin.com/in/arifulsajib/">
<i class="fa-brands fa-linkedin me-3"></i>
</a>
<a target="_blank" class="text-decoration-none text-white" href="https://github.com/arifulsajib">
<i class="fa-brands fa-github"></i>
</a>
</div>
</div>
</footer>
<!-- Bootstrap js -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>