-
Notifications
You must be signed in to change notification settings - Fork 0
/
react.php
572 lines (464 loc) · 24.6 KB
/
react.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'link/links.php'; ?>
<?php include 'css/style.php'; ?>
<?php include 'css/coursesdetails.php'; ?>
<?php include 'css/about.php'; ?>
<?php include 'css/bloggrid.php'; ?>
<?php include 'css/contactus.php'; ?>
<?php include 'css/courses.php'; ?>
<?php include 'JavaScript/javascript.php'; ?>
<title>Courses Details</title>
</head>
<body>
<!-- header section start -->
<div class="main-wrapper">
<!-- Header Section Start -->
<div class="header-section">
<!-- Header Main Start -->
<div class="header-main sticky">
<div class="container">
<!-- Header Main Start -->
<div class="header-main-wrapper">
<!-- Header Logo Start -->
<div class="header-logo">
<a href="index.php"><img src="Images/logo1.png" alt="Logo"></a>
</div>
<!-- Header Logo End -->
<!-- Header Menu Start -->
<div class="header-menu d-none d-lg-block">
<ul class="nav-menu">
<li class="active"><a href="index.php">Home</a></li>
<!-- <li class="menu-item-has-children">
<a href="index.php">All Course</a>
<ul class="sub-menu">
<li><a href="courses.php">Courses</a></li>
<li><a href="coursesdetails.php">Courses Details</a></li>
</ul>
</li> -->
<li class="menu-item-has-children">
<a href="courses.php">Courses </a>
<ul class="sub-menu">
<li><a href="about.php">Web Development</a></li>
<li><a href="Registration.php">Android Development</a></li>
<li><a href="login.php">Software Development</a></li>
<li><a href="after-enroll.php">After Enroll</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="bloggrid.php">Blog</a>
<ul class="sub-menu">
<li class="menu-item-has-children">
<a href="bloggrid.php">Blog</a>
<ul class="sub-menu">
<li><a href="blog-grid.php">Blog</a></li>
<li><a href="blog-right-sidebar.php">Blog Right Sidebar</a></li>
</ul>
</li>
<li class="menu-item-has-children">
<a href="#">Blog Details</a>
<ul class="sub-menu">
<li><a href="blogrightside.php">Blog Details Right
Sidebar</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="contactus.php">Contact</a></li>
</ul>
</div>
<!-- Header Menu End -->
<!-- Header Sing In & Up Start -->
<div class="header-sign-in-up d-none d-lg-block">
<ul>
<li><a class="sign-in" href="login.php">Login</a></li>
<li><a class="sign-up" href="Registration.php">Sign Up</a></li>
</ul>
</div>
<!-- Header Sing In & Up End -->
<!-- Header Mobile Toggle Start -->
<div class="header-toggle d-lg-none">
<a class="menu-toggle" href="javascript:void(0)">
<span></span>
<span></span>
<span></span>
</a>
</div>
<!-- Header Mobile Toggle End -->
</div>
<!-- Header Main End -->
</div>
</div>
<!-- Header Main End -->
</div>
<!-- Header Section End -->
</header>
<!-- Mobile Menu Start -->
<div class="mobile-menu">
<!-- Menu Close Start -->
<a class="menu-close" href="javascript:void(0)">
<i class="icofont-close-line"></i>
</a>
<!-- Menu Close End -->
<!-- Mobile Sing In & Up Start -->
<div class="mobile-sign-in-up">
<ul>
<li><a class="sign-in" href="login.php">Login</a></li>
<li><a class="sign-up" href="Registration.php">Sign Up</a></li>
</ul>
</div>
<!-- Mobile Sing In & Up End -->
<!-- Mobile Menu Start -->
<div class="mobile-menu-items">
<ul class="nav-menu">
<li class="active"><a href="index.php">Home</a></li>
<!-- <li class="menu-item-has-children"><span class="mobile-menu-expand"></span>
<a href="#course">All Course</a>
<ul class="sub-menu" style="display: none;">
<li><a href="courses.php">Courses</a></li>
<li><a href="courses-details.php">Courses Details</a></li>
</ul>
</li> -->
<li class="menu-item-has-children"><span class="mobile-menu-expand"></span>
<a href="#">Pages </a>
<ul class="sub-menu" style="display: none;">
<li><a href="about.php">About</a></li>
<li><a href="Registration.php">Registration</a></li>
<li><a href="login.php">Login</a></li>
<li><a href="after-enroll.php">After Enroll</a></li>
</ul>
</li>
<li class="menu-item-has-children"><span class="mobile-menu-expand"></span>
<a href="#">Blog</a>
<ul class="sub-menu" style="display: none;">
<li class="menu-item-has-children"><span class="mobile-menu-expand"></span>
<a href="bloggrid.php">Blog</a>
<ul class="sub-menu" style="display: none;">
<li><a href="bloggrid.php">Blog</a></li>
<li><a href="bloggrid.php">Blog Right Sidebar</a></li>
</ul>
</li>
<li class="menu-item-has-children"><span class="mobile-menu-expand"></span>
<a href="bloggrid.php">Blog Details</a>
<ul class="sub-menu" style="display: none;">
<li><a href="bloggrid.php">Blog Details Right Sidebar</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
<!-- Mobile Menu End -->
<!-- Mobile Menu End -->
<div class="mobile-social">
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- Mobile Menu End -->
</div>
<!-- Mobile Menu End -->
<!-- Overlay Start -->
<div class="overlay"></div>
<!-- Overlay End -->
<!-- header section End -->
<!-- Page Banner Start -->
<section class="page-banner">
<img class="shape-1 " src="images/shape-8.webp" alt="Shape">
<!-- <img class="shape-2" src="images/shape-23.webp" alt="Shape"> -->
<div class="container">
<!-- Page Banner Start -->
<div class="page-banner-content">
<ul class="breadcrumb fs-2">
<li><a href="#">Home</a> // </li>
<li class="active">Courses Details</li>
</ul>
<h2 class="title">Courses <span> Details</span></h2>
</div>
<!-- Page Banner End -->
</div>
<div class="shape-icon-box">
<img class="icon-shape-1 animation-left" src="images/shape-5.webp" alt="Shape">
<div class="box-content">
<div class="box-wrapper">
<i class="fa fa-certificate"></i>
</div>
</div>
<img class="icon-shape-2" src="images/shape-6.webp" alt="Shape">
<img class="shape-3" src="images/shape-24.webp" alt="Shape">
<img class="shape-author" src="images\author-11.webp" alt="Shape">
</div>
</div>
</section>
<!-- Page Banner End -->
<div class="section section-padding mt-n10">
<div class="container">
<div class="row gx-10">
<div class="col-lg-8">
<!-- Courses Details Start -->
<div class="courses-details">
<div class="courses-details-images">
<img src="assets/images/courses/react.jpg" alt="Courses Details">
<span class="tags">Science</span>
<div class="courses-play">
<img src="Images/circle-shape.webp" alt="Play">
<a class="play video-popup" href="Video/react.php"><i
class="fa fa-play"></i></a>
</div>
</div>
<h2 class="title">React Full Course:React For Beginners To Learn just click Enroll.
</h2>
<div class="courses-details-admin">
<div class="admin-author">
<div class="author-thumb">
<img src="assets/images/author/react.jpeg" alt="Author">
</div>
<div class="author-content">
<a class="name" href="#">Tech with tim</a>
</div>
</div>
<div class="admin-rating">
<span class="rating-count">3.9</span>
<span class="rating-star">
<span class="rating-bar" style="width: 80%;"></span>
</span>
</div>
</div>
<!-- Courses Details Tab Start -->
<div class="courses-details-tab">
<!-- Details Tab Menu Start -->
<!-- Details Tab Menu End -->
<!-- Details Tab Content Start -->
<div class="details-tab-content">
<div class="tab-content">
<div class="tab-pane fade show active" id="description">
<!-- Tab Description Start -->
<div class="tab-description">
<div class="description-wrapper">
<h3 class="tab-title">Description:</h3>
<p>Complete Reactjs Course To Learn:</p>
</div>
<div class="description-wrapper">
<h3 class="tab-title">Curriculum:</h3>
<p>Welcome to a new tutorial series on React. React is a web framework that uses Javascript.
It was created and is maintained by Facebook with the library being open source. React is super popular and good to know in 2021 to make more advanced websites.
</p>
</div>
<!--<div class="description-wrapper">
<h3 class="tab-title">Certification:</h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s when an unknown printer took a galley of type
and scrambled it to make a type specimen book. It has survived not
only five centuries, but also the leap into electronic typesetting,
remaining essentially unchanged. It was popularsed in the 1960 with
release containing Lorem Ipsum passages desktop publishing software.
</p>
</div>-->
</div>
<!-- Tab Description End -->
</div>
</div>
</div>
<!-- Details Tab Content End -->
</div>
<!-- Courses Details Tab End -->
</div>
<!-- Courses Details End -->
</div>
<div class="col-lg-4">
<!-- Courses Details Sidebar Start -->
<div class="sidebar">
<!-- Sidebar Widget Information Start -->
<div class="sidebar-widget widget-information">
<div class="info-list">
<ul>
<li><i class="fa fa-user"></i> <strong>Instructor</strong> <span>Tech with tim
</span></li>
<li><i class="fa fa-history"></i> <strong>Duration</strong> <span>15hr 2
mins</span></li>
<li><i class="fa fa-play"></i> <strong>Lectures</strong> <span>12</span></li>
<li><i class="fa fa-chevron-circle-up"></i> <strong>Level</strong>
<span>secondary</span></li>
<li><i class="fa fa-book"></i> <strong>Language</strong> <span>English</span></li>
<li><i class="fa fa-certificate"></i> <strong>Certificate</strong> <span>Yes</span>
</li>
</ul>
</div>
<div class="info-btn">
<a href="Video/react.php" class="btn btn-primary btn-hover-dark">Enroll Now</a>
</div>
</div>
<!-- Sidebar Widget Information End -->
<!-- Sidebar Widget Share Start -->
<div class="sidebar-widget">
<h4 class="widget-title">Share Course:</h4>
<ul class="social">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
</div>
<!-- Sidebar Widget Share End -->
</div>
<!-- Courses Details Sidebar End -->
</div>
</div>
</div>
</div>
<!-- Download App Start -->
<div class="section section-padding download-section">
<div class="app-shape-1"></div>
<div class="app-shape-2"></div>
<div class="app-shape-3"></div>
<div class="app-shape-4"></div>
<div class="container">
<!-- Download App Wrapper Start -->
<div class="download-app-wrapper mt-n6">
<!-- Section Title Start -->
<div class="section-title section-title-white">
<h5 class="sub-title">Ready to start?</h5>
<h2 class="main-title">Download our mobile app. for easy to start your course.</h2>
</div>
<!-- Section Title End -->
<img class="shape-1 animation-right" src="Images/shape-14.webp" alt="Shape">
<!-- Download App Button End -->
<div class="download-app-btn">
<ul class="app-btn">
<li><a href="#"><img src="Images/google-play.webp" alt="Google Play"></a></li>
<li><a href="#"><img src="Images/app-store.webp" alt="App Store"></a></li>
</ul>
</div>
<!-- Download App Button End -->
</div>
<!-- Download App Wrapper End -->
</div>
</div>
<!-- Download App End -->
<!-- scroll button -->
<a href="#" id="toTopBtn" class="cd-top text-replace js-cd-top cd-top--is-visible cd-top--fade-out"
data-abc="true"></a>
<!-- scroll button end -->
<!-- footer section start -->
<div class="section footer-section">
<!-- Footer Widget Section Start -->
<div class="footer-widget-section">
<img class="shape-1 animation-down" src="Images/shape-21.webp" alt="Shape">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 order-md-1 order-lg-1">
<!-- Footer Widget Start -->
<div class="footer-widget">
<div class="widget-logo">
<a href="#"><img src="Images/logo1.png" alt="Logo"></a>
</div>
<div class="widget-address">
<h4 class="footer-widget-title">Code Bug</h4>
<p>Nerul Navi Mumbai</p>
</div>
<ul class="widget-info">
<li>
<p><i class="fa fa-envelope"></i> <a
href="mailto:[email protected]">[email protected]</a> </p>
</li>
<li>
<p> <i class="fa fa-phone-alt"></i> <a href="tel:9702621413">(970) 262-1413</a> </p>
</li>
</ul>
<ul class="widget-social">
<li><a href="#"><i class="fa fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-skype"></i></li>
<li><a href="#"><i class="fa fa-instagram"></i></li>
</ul>
</div>
<!-- Footer Widget End -->
</div>
<div class="col-lg-6 order-md-3 order-lg-2">
<!-- Footer Widget Link Start -->
<div class="footer-widget-link">
<!-- Footer Widget Start -->
<div class="footer-widget">
<h4 class="footer-widget-title">Category</h4>
<ul class="widget-link">
<li><a href="#">Creative Writing</a></li>
<li><a href="#">Film & Video</a></li>
<li><a href="#">Graphic Design</a></li>
<li><a href="#">UI/UX Design</a></li>
<li><a href="#">Business Analytics</a></li>
<li><a href="#">Marketing</a></li>
</ul>
</div>
<!-- Footer Widget End -->
<!-- Footer Widget Start -->
<div class="footer-widget">
<h4 class="footer-widget-title">Quick Links</h4>
<ul class="widget-link">
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Discussion</a></li>
<li><a href="#">Terms & Conditions</a></li>
<li><a href="#">Customer Support</a></li>
<li><a href="#">Course FAQ's</a></li>
</ul>
</div>
<!-- Footer Widget End -->
</div>
<!-- Footer Widget Link End -->
</div>
<div class="col-lg-3 col-md-6 order-md-2 order-lg-3">
<!-- Footer Widget Start -->
<div class="footer-widget">
<h4 class="footer-widget-title">Subscribe</h4>
<div class="widget-subscribe">
<p>Lorem Ipsum has been them an industry printer took a galley make book.</p>
<div class="widget-form">
<form action="https://codebugg.000webhostapp.com">
<input type="text" placeholder="Email here">
<button class="btn btn-primary btn-hover-dark">Subscribe Now</button>
</form>
</div>
</div>
</div>
<!-- Footer Widget End -->
</div>
</div>
</div>
<img class="shape-2 animation-left" src="Images/shape-22.webp" alt="Shape">
</div>
<!-- Footer Widget Section End -->
<div class="footer-copyright">
<div class="container">
<!-- Footer Copyright Start -->
<div class="copyright-wrapper">
<div class="copyright-link">
<a href="#">Terms of Service</a>
<a href="#">Privacy Policy</a>
<a href="#">Sitemap</a>
<a href="#">Security</a>
</div>
<div class="copyright-text">
<p>© 2021 <span> Edule </span> Made with <i class="fa fa-heart"></i> by <a
href="#">Codecarnival</a></p>
</div>
</div>
<!-- Footer Copyright End -->
</div>
</div>
<!-- Footer End -->
</div>
<!-- sticky navigation -->
<script>
window.addEventListener("scroll", function () {
var header = document.querySelector(".header-menu");
header.classList.toggle("sticky", window.scrollY > 0);
})
</script>
</body>
</html>