forked from ML-Fusion-Lab/ML-Fusion-Lab-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
233 lines (222 loc) · 8.6 KB
/
courses.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="ml-fusion-lab-logo.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ML Fusion Labs - Courses</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="scroll.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh; /* Ensure body takes full height */
}
header {
background: #333;
color: white;
padding: 15px 0;
}
header nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
header nav .logo h1 {
margin: 0;
}
header nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
header nav ul li {
margin-left: 20px;
}
header nav ul li a {
color: white;
text-decoration: none;
}
.hero-small {
background: #264f7c;
color: white;
padding: 70 px;
text-align: center;
}
.courses {
padding: 50px 0;
background-color: #f9f9f9;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.course-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.course-item {
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
text-align: center;
transition: transform 0.3s;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.course-item:hover {
transform: translateY(-5px);
}
.course-item h3 {
margin-bottom: 10px;
}
.course-item p {
margin-bottom: 10px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #0056b3;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 20px 0;
margin-top: auto; /* Push footer to bottom */
}
.footer-container {
max-width: 800px;
margin: auto;
padding: 0 20px;
}
.footer-links, .footer-socials {
margin: 10px 0;
}
.footer-links a, .footer-socials a {
color: white;
text-decoration: none;
margin: 0 10px;
transition: color 0.3s; /* Add transition for hover effect */
}
.footer-links a:hover, .footer-socials a:hover {
color: #007BFF; /* Change color on hover */
}
.footer-contact {
margin: 10px 0;
}
</style>
</head>
<body>
<header >
<nav>
<div class="logo">
<h1><img src="ml fusion lab log.jpg" alt="logo" width="100" height="100"/></h1>
</div>
<div class="hamburger" id="hamburger">☰</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
<div class="theme-switch" id="theme-switch"></div>
</ul>
</nav>
</header>
<section class="hero-small">
<div class="hero-content">
<h2>Machine Learning Courses</h2>
<p>Explore structured learning paths and practical projects to master machine learning.</p>
</div>
</section>
<section class="courses">
<div class="container">
<h2 style="text-align: center; margin-bottom: 30px;">Our Popular Courses</h2>
<div class="course-list">
<div class="course-item">
<h3>Introduction to Machine Learning</h3>
<p><strong>Duration:</strong> 4 weeks</p>
<p><strong>Difficulty:</strong> Beginner</p>
<p>Learn the basic concepts of machine learning, including types of ML and key algorithms.</p>
<a href="intr-to-ml.html" class="btn">Learn More</a>
</div>
<div class="course-item">
<h3>Supervised vs Unsupervised Learning</h3>
<p><strong>Duration:</strong> 3 weeks</p>
<p><strong>Difficulty:</strong> Intermediate</p>
<p>Understand the difference between supervised and unsupervised learning methods.</p>
<a href="intr-to-ml.html" class="btn">Learn More</a>
</div>
<div class="course-item">
<h3>Neural Networks and Deep Learning</h3>
<p><strong>Duration:</strong> 5 weeks</p>
<p><strong>Difficulty:</strong> Advanced</p>
<p>Dive into deep learning and understand how neural networks work.</p>
<a href="intr-to-ml.html" class="btn">Learn More</a>
</div>
<div class="course-item">
<h3>Practical ML with Python</h3>
<p><strong>Duration:</strong> 6 weeks</p>
<p><strong>Difficulty:</strong> Intermediate</p>
<p>Learn how to implement machine learning algorithms in Python with real-world examples.</p>
<a href="intr-to-ml.html" class="btn">Learn More</a>
</div>
<div class="course-item">
<h3>Advanced ML Techniques</h3>
<p><strong>Duration:</strong> 4 weeks</p>
<p><strong>Difficulty:</strong> Advanced</p>
<p>Master advanced topics like reinforcement learning and unsupervised feature learning.</p>
<a href="intr-to-ml.html" class="btn">Learn More</a>
</div>
<div class="course-item">
<h3>Data Visualization with Python</h3>
<p><strong>Duration:</strong> 4 weeks</p>
<p><strong>Difficulty:</strong> Intermediate</p>
<p>Explore various libraries in Python for data visualization, including Matplotlib and Seaborn, to create insightful charts and graphs.</p>
<a href="intr-to-ml.html" class="btn">Learn More</a>
</div>
</div>
</div>
</section>
<footer>
<div class="footer-container">
<p>© 2024 ML Fusion Labs | All Rights Reserved</p>
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a> |
<a href="terms.html">Terms of Service</a> |
<a href="about.html">About Us</a> |
<a href="contact.html">Contact</a>
</div>
<div class="footer-socials">
Follow us on:
<a href="https://facebook.com" target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://linkedin.com" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
<div class="footer-contact">
<p>Contact us: <a href="mailto:info@mlfusionlabs.com" style="color: white;">info@mlfusionlabs.com</a> | Phone: +1 (555) 123-4567</p>
</div>
</div>
</footer>
<button id="scrollTopBtn" onclick="scrollToTop()">⇧</button>
<script src="scroll.js"></script>
<script src="script.js"></script>
</body>
</html>