-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoursedetails.php
More file actions
70 lines (61 loc) · 2.14 KB
/
Copy pathCoursedetails.php
File metadata and controls
70 lines (61 loc) · 2.14 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
<!-- Header -->
<?php
include('./Includes/Header.php');
?>
<!-- End of Header -->
<!-- Start Course Page Banner -->
<div class="container-fluid bg-dark">
<div class="row">
<img src="Image/person-1990906_1920.jpg" alt="courses"
style="height: 500px;
width: 100%;
object-fit:cover;
box-shadow:10px;"/>
</div>
</div>
<!-- End Course Page Banner -->
<!-- Start Main Content -->
<div class="container mt-5">
<div class="row">
<div class="col-md-4">
<img src="image/pexels-realtoughcandycom-11035474.jpg" class="card-img-top" alt="python">
</div>
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Course Name: Learn Python</h5>
<p class="card-text">"Python is a versatile and modern programming language celebrated for its simplicity and productivity, adaptable across diverse platforms. Our course offers comprehensive training to master Python, empowering developers to effortlessly create robust software solutions."</p>
<p class="card-text">Duration: 10 Days</p>
<form action="" method="post">
<p class="card-text d-inline">Price: <small><del>₹ 1000</del></small>
<span class="font-weight-bolder">₹ 300</span></p>
<button type="submit" class="btn btn-primary text-white font-weight=bolder float-right" name="buy">Buy Now</button>
</form>
</div>
</div>
</div>
</div>
<!-- Start Lesson Table -->
<div class="container">
<div class="row">
<table class="table table-bordered table-hover">
<thead>
<tr>
<th scope="col">Lesson No.</th>
<th scope="col">Lesson Name</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Introduction</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- End Main Content -->
<!-- Footer -->
<?php
include('./Includes/Footer.php');
?>
<!-- End of Footer -->