forked from ML-Fusion-Lab/ML-Fusion-Lab-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
community_suport.html
323 lines (294 loc) · 12.1 KB
/
community_suport.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!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 - Community Support</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="scroll.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<!-- Meta Tags for SEO -->
<meta name="description" content="ML Fusion Labs - Join our community for Machine Learning resources, forums, Q&A sessions, and mentor support.">
<meta property="og:title" content="ML Fusion Labs - Community Support">
<meta property="og:description" content="A community dedicated to helping Machine Learning enthusiasts. Connect with forums, mentors, and resources.">
<meta property="og:image" content="ml-fusion-lab-logo.png">
<meta property="og:url" content="https://www.mlfusionlabs.com/community_support.html">
<meta name="twitter:card" content="summary_large_image">
<!-- Favicon for Different Platforms -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<style>
.community-support {
margin: 20px 0; /* Adjusts vertical spacing */
}
.community-support h3 {
margin-top: 30px; /* Creates a gap above the headings */
margin-bottom: 10px; /* Creates a gap below the headings */
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 20px auto;
max-width: 1200px;
}
.card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 45%;
margin: 20px auto;
transition: transform 0.3s;
text-align: center;
padding: 20px;
}
.card:nth-child(5) {
width: 60%;
}
.card:hover {
transform: scale(1.05);
z-index: 1;
}
.card h3 {
margin: 10px 0;
font-size: 1.5rem;
}
.card p {
font-size: 1rem;
color: #666;
}
.btn {
display: inline-block;
margin: 10px 0; /* Creates a gap between buttons */
background-color: #007BFF; /* Button Background Color */
color: white; /* Button Text Color */
padding: 10px 20px; /* Button Padding */
text-decoration: none; /* Remove underline */
border-radius: 5px; /* Rounded Corners */
transition: background-color 0.3s ease; /* Smooth Transition for Hover */
}
.btn:hover {
background-color: #0056b3; /* Darker Blue on Hover */
}
/* Back to Top button styles */
#backToTop {
display: none; /* Hidden by default */
position: fixed;
bottom: 20px;
right: 20px;
z-index: 99;
border-radius: 50%;
background-color: #00a6ff;
color: #fff;
border: none;
padding: 10px 15px;
cursor: pointer;
font-size: 16px;
}
#backToTop:hover {
background-color: #555;
}
/* Smooth Scrolling */
html {
scroll-behavior: smooth;
}
.dark-mode .card h3 {
color: #000; /* Dark black for headings in dark mode */
}
/* css for mouse cursor trail effect */
.circle {
position: absolute;
width: 25px;
height: 25px;
border-radius: 50%;
pointer-events: none;
background: radial-gradient(circle, rgba(70, 130, 180, 0.3),skyblue, rgba(0, 0, 50, 0.3),white);
transition: transform 0.1s, left 0.1s, top 0.1s;
}
.circle-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9999; /* removed the non-breaking space ( ) */
}
</style>
</head>
<body>
<header>
<nav>
<div id="progress-container">
<div id="progress-bar"></div>
</div>
<div class="logo">
<a href="index.html"><h1><img src="ml fusion lab log.jpg" alt="logo" width="100" height="100"/></h1></a>
</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>
<li><a href="Testimonial.html">Testimonial</a></li>
<div class="theme-switch" id="theme-switch"></div>
</ul>
</nav>
</header>
<!-- html for mouse cursor trail effect -->
<div class="circle-container">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
<section class="community-support">
<div class="container">
<h2>Community Support</h2>
<p>At ML Fusion Labs, we believe that learning is best when shared. Our community support section is designed to connect learners, share knowledge, and provide assistance for your machine learning journey.</p>
<div class="card">
<h3>Join Our Forums</h3>
<p>Participate in discussions, ask questions, and share your experiences in our vibrant community forums. Whether you’re a beginner or an expert, everyone is welcome!</p>
<a href="forum.html" class="btn" aria-label="Visit Forums">Visit Forums</a>
</div>
<div class="card">
<h3>Weekly Q&A Sessions</h3>
<p>Join our weekly Q&A sessions where experts from the ML field answer your questions live. Check our schedule and sign up!</p>
<a href="qa_schedule.html" class="btn" aria-label="View Q&A Schedule">View Schedule</a>
</div>
<div class="card">
<h3>Resource Library</h3>
<p>Access our curated library of articles, tutorials, and videos to help you navigate through machine learning topics. Learn at your own pace!</p>
<a href="https://ml-fusion-lab.netlify.app/resources" class="btn" aria-label="Explore Resources">Explore Resources</a>
</div>
<div class="card">
<h3>Connect with Mentors</h3>
<p>Get paired with experienced mentors who can guide you through complex topics, provide insights, and support your learning journey.</p>
<a href="https://ml-fusion-lab.netlify.app/mentor_program.html" class="btn" aria-label="Find a Mentor">Find a Mentor</a>
</div>
<div class="card">
<h3>Social Media Groups</h3>
<p>Join our social media groups on platforms like Facebook, LinkedIn, and Discord to stay updated, network with other learners, and share resources.</p>
<a href="social_media.html" class="btn" aria-label="Join Social Media Groups">Join Our Groups</a>
</div>
</div>
</section>
<!-- Back to Top Button -->
<button id="backToTop" title="Go to top" aria-label="Back to Top"> <i class="fas fa-arrow-up"></i></button>
<footer>
<div class="footer-container">
<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:[email protected]" style="color: white;">[email protected]</a> | Phone: +1 (555) 123-4567</p>
</div>
<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>
<p>© 2024 ML Fusion Labs | All Rights Reserved</p>
</div>
</footer>
<div id="loading-spinner" style="display: none;">
<img src="spinner.gif" alt="Loading...">
</div>
<script src="script.js"></script>
<script>
// Show loading spinner
document.onreadystatechange = function () {
if (document.readyState !== "complete") {
document.querySelector("#loading-spinner").style.display = "block";
} else {
document.querySelector("#loading-spinner").style.display = "none";
}
};
// When the user scrolls down 20px from the top, show the button
window.onscroll = function() {
scrollFunction();
};
function scrollFunction() {
const backToTop = document.getElementById("backToTop");
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
backToTop.style.display = "block";
} else {
backToTop.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
document.getElementById("backToTop").onclick = function() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE, and Opera
};
</script>
<!-- js for mouse cursor trail effect -->
<script>
document.addEventListener("DOMContentLoaded", function () {
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
circles.forEach(function (circle) {
circle.x = 0;
circle.y = 0;
});
window.addEventListener("mousemove", function (e) {
coords.x = e.pageX;
coords.y = e.pageY - window.scrollY; // Adjust for vertical scroll position
});
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
circle.style.left = `${x - 12}px`;
circle.style.top = `${y - 12}px`;
circle.style.transform = `scale(${(circles.length - index) / circles.length})`;
const nextCircle = circles[index + 1] || circles[0];
circle.x = x;
circle.y = y;
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
requestAnimationFrame(animateCircles);
}
animateCircles();
});
</script>
</body>
</html>