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
166 lines (148 loc) · 7.25 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
<!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 */
}
.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;
}
</style>
</head>
<body>
<header>
<nav>
<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="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>
<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" aria-label="Visit Forums">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" aria-label="View Q&A Schedule">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" aria-label="Explore Resources">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" aria-label="Find a Mentor">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" aria-label="Join Social Media Groups">Join Our Groups</a>
</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="container">
<p><a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Service</a></p>
<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>
</body>
</html>