forked from ML-Fusion-Lab/ML-Fusion-Lab-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity_suport.html
76 lines (69 loc) · 3.38 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
<!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="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<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 */
}
.btn {
display: inline-block;
margin: 10px 0; /* Creates a gap between buttons */
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<h1>ML Fusion Labs</h1>
</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="community_support.html" class="active">Community Support</a></li>
</ul>
</nav>
</header>
<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>
<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">Visit Forums</a>
<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">View Schedule</a>
<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="resources.html" class="btn">Explore Resources</a>
<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="mentor_program.html" class="btn">Find a Mentor</a>
<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">Join Our Groups</a>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 ML Fusion Labs | All Rights Reserved</p>
<p><a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Service</a></p>
</div>
</footer>
</body>
</html>