-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (105 loc) · 4.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>LearnHub - Online Learning Platform</title>
</head>
<body>
<header>
<div class="logo">
<img src="images/log.jpeg" alt="LearnHub Logo">
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="auth-buttons">
<a href="login.html"><button class="login-btn">Login</button></a>
<a href="signup.html"><button class="signup-btn">Sign Up</button></a>
</div>
</header>
<main class="container">
<section class="hero">
<div class="hero-text">
<h1>Welcome to LearnHub</h1>
<p>Your ultimate platform to learn, grow, and succeed.</p>
<div class="search-bar">
<input type="text" placeholder="Search for courses">
<button class="search-btn">Search</button>
</div>
<button class="explore-btn">Explore Courses</button>
</div>
</section>
<section class="featured-courses">
<h2>Trending Courses</h2>
<div class="courses-grid">
<div class="course-card">
<h3>Web Development</h3>
<p>Master HTML, CSS, and JavaScript.</p>
<button>Learn More</button>
</div>
<div class="course-card">
<h3>Data Science</h3>
<p>Explore Python, Machine Learning, and AI.</p>
<button>Learn More</button>
</div>
<div class="course-card">
<h3>Graphic Design</h3>
<p>Unleash your creativity with design tools.</p>
<button>Learn More</button>
</div>
</div>
</section>
<section class="categories">
<h2>Popular Categories</h2>
<div class="categories-grid">
<div class="category">Web Development</div>
<div class="category">Programming</div>
<div class="category">Business Management</div>
<div class="category">Photography</div>
<div class="category">Marketing</div>
</div>
</section>
<section class="testimonials">
<h2>What Our Learners Say</h2>
<div class="testimonial">
<div class="testimonial-profile">
<div class="placeholder"></div>
</div>
<p>"LearnHub has been life-changing for my career!" - <strong>John Doe</strong></p>
</div>
<div class="testimonial">
<div class="testimonial-profile">
<div class="placeholder"></div>
</div>
<p>"The courses are top-notch and easy to follow!" - <strong>Jane Smith</strong></p>
</div>
<div class="testimonial">
<div class="testimonial-profile">
<div class="placeholder"></div>
</div>
<p>"The best online platform for learning new skills!" - <strong>Mark Lee</strong></p>
</div>
</section>
</main>
<footer>
<p>© 2024 LearnHub. All Rights Reserved.</p>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<div class="social-icons">
<a href="#"><img src="images/facebook_icon.png" alt="Facebook"></a>
<a href="#"><img src="images/twitter-icon.png" alt="Twitter"></a>
<a href="#"><img src="images/linkedin_icon.png" alt="LinkedIn"></a>
</div>
</footer>
</body>
</html>