forked from Lakshminair9746/eduplatform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
73 lines (72 loc) · 3.09 KB
/
Copy pathcourses.html
File metadata and controls
73 lines (72 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduPlatform - Courses</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1><a href="index.html">EduPlatform</a></h1>
<nav>
<ul>
<li><a href="index.html"><span>Home</span></a></li>
<li><a href="courses.html"><span>Courses</span></a></li>
<li><a href="about.html"><span>About</span></a></li>
<li><a href="contact.html"><span>Contact</span></a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="page-hero">
<div class="container text-center">
<h2>Our Courses</h2>
<p>Explore a wide range of courses designed to help you master new skills and advance your career.</p>
</div>
</section>
<section class="course-listing">
<div class="container">
<div class="section-content">
<h3>Featured Programs</h3>
<div class="course-grid">
<div class="course-card">
<img src="https://via.placeholder.com/300x200?text=Advanced+Python" alt="Advanced Python Course">
<h4>Advanced Python Programming</h4>
<p>Deep dive into Python's advanced features, data structures, and algorithms.</p>
<a href="#" class="btn">View Details</a>
</div>
<div class="course-card">
<img src="https://via.placeholder.com/300x200?text=React+Dev" alt="React Development Course">
<h4>React JS Development</h4>
<p>Build modern, dynamic, and scalable single-page applications with React.</p>
<a href="#" class="btn">View Details</a>
</div>
<div class="course-card">
<img src="https://via.placeholder.com/300x200?text=Data+Viz" alt="Data Visualization Course">
<h4>Data Visualization with D3.js</h4>
<p>Create compelling and interactive data visualizations for insights.</p>
<a href="#" class="btn">View Details</a>
</div>
<div class="course-card">
<img src="https://via.placeholder.com/300x200?text=SQL+Mastery" alt="SQL Mastery Course">
<h4>SQL Database Mastery</h4>
<p>Learn to design, query, and manage relational databases effectively.</p>
<a href="#" class="btn">View Details</a>
</div>
</div>
</div>
</div>
</section>
<
</main>
<footer>
<div class="container">
<p>© 2025 EduPlatform. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>