
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Course Detail Page</title>
<style>
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.header {
display: flex;
justify-content: flex-end;
padding: 10px;
background-color: #111;
}
.header a {
color: white;
margin-left: 15px;
text-decoration: none;
}
.breadcrumbs {
color: gray;
padding: 10px 20px;
}
.course-thumbnail {
width: 100%;
height: 300px;
background-color: gray;
margin: 20px 0;
}
.course-name {
font-size: 2em;
font-weight: bold;
padding: 0 20px;
}
.institute-name {
font-size: 1.2em;
color: lightgray;
padding: 0 20px;
}
.logo {
height: 20px;
vertical-align: middle;
}
.video-player {
width: 100%;
height: 400px;
background-color: darkgray;
margin: 20px 0;
}
.enroll-button {
background-color: white;
color: black;
padding: 10px 20px;
border: none;
cursor: pointer;
font-size: 1em;
margin: 20px 20px 10px 20px;
}
.section {
margin: 20px;
padding: 10px;
border: 1px solid gray;
border-radius: 5px;
}
.tags {
color: lightgray;
}
.pricing-widget {
background-color: #222;
padding: 15px;
border-radius: 5px;
margin: 20px;
}
</style>
</head>
<body>
<div class="header">
<a href="#">Facebook</a>
<a href="#">Twitter</a>
<a href="#">LinkedIn</a>
</div>
<div class="breadcrumbs">Home > Courses > Course Category > Course Name</div>
<div class="course-thumbnail"></div>
<div class="course-name">Course Name</div>
<div class="institute-name">Institute Name <img src="logo.png" alt="Logo" class="logo"></div>
<div class="video-player">[Video Player]</div>
<button class="enroll-button">Enroll Now</button>
<div class="section">Duration: 10 hours</div>
<div class="section">Rating: ★★★★☆</div>
<div class="section tags">Tags: #tag1 #tag2</div>
<div class="section">Category: Course Category</div>
<div class="section">Description: Course description goes here. This is where you can provide detailed information about the course content, objectives, and outcomes.</div>
<div class="section">Table of Content: [Collapsible Sections]</div>
<div class="section">Reviews: [User Reviews]</div>
<div class="section">Resources: [Downloadable Links]</div>
<div class="pricing-widget">
<h3>Pricing</h3>
<p>Price: $99</p>
<p>Payment Options: Credit Card, PayPal</p>
<p>Installment Plans: Available</p>
</div>
<footer style="padding: 20px; text-align: center; color: gray;">
© 2023 Course Platform. All rights reserved.
</footer>
</body>
</html>