forked from ML-Fusion-Lab/ML-Fusion-Lab-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforum.html
125 lines (109 loc) · 5.04 KB
/
forum.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forum - ML Fusion Lab</title>
<link rel="icon" href="ml-fusion-lab-logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<link rel="stylesheet" href="forum.css">
</head>
<body>
<!-- Header Section -->
<header class="head">
<div class="logo">
<a href="index.html">
<h1><img src="ml fusion lab log.jpg" alt="logo" width="50" height="50" /></h1>
</a>
</div>
<nav>
<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="feedback.html">Feedback</a></li>
<div class="theme-switch" id="theme-switch"></div>
</ul>
</nav>
</header>
<section class="forum-section">
<h2 class="forum-title">Join Our Forum</h2>
<p class="forum-description">Explore some of the best machine learning forums around the globe. Connect with like-minded learners, discuss, collaborate, and grow together.</p>
<div class="forum-container">
<a href="#" class="forum-card">
<h3>Topic-Specific Discussion Threads</h3>
<p>Dive deep into machine learning topics and engage with discussions tailored to specific areas of interest.</p>
</a>
<a href="#" class="forum-card">
<h3>Course-Specific Discussion Threads</h3>
<p>Get help with your learning materials by participating in discussions related to specific machine learning courses.</p>
</a>
<a href="#" class="forum-card">
<h3>Project Sharing and Collaboration Space</h3>
<p>Share your machine learning projects and collaborate with peers to enhance your work.</p>
</a>
<a href="#" class="forum-card">
<h3>Peer Study Groups</h3>
<p>Form study groups to enhance your learning journey through peer collaboration.</p>
</a>
<a href="#" class="forum-card">
<h3>Career Advice and Job Postings</h3>
<p>Seek guidance on career paths in machine learning and find the latest job postings in the field.</p>
</a>
<a href="#" class="forum-card">
<h3>Virtual Whiteboard for Collaboration</h3>
<p>Brainstorm and collaborate in real-time with peers using our virtual whiteboard feature.</p>
</a>
</div>
<div class="see-more">
<a href="#" class="see-more-btn">See More</a>
</div>
</section>
<!-- Footer Section -->
<footer>
<div class="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">
<img src="Course Assets/x.png" alt="X Logo" style="width: 30px; height: 30px;">
</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]">[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>
<button id="scrollTopBtn" onclick="scrollToTop()"><i class="fas fa-arrow-up"></i></button>
</footer>
<!-- JavaScript -->
<script src="scroll.js"></script>
<script src="script.js"></script>
<script>
const scrollTopBtn = document.getElementById("scrollTopBtn");
window.onscroll = function () {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
scrollTopBtn.style.display = "block";
} else {
scrollTopBtn.style.display = "none";
}
};
function scrollToTop() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<script src="https://cdn.botpress.cloud/webchat/v2.2/inject.js"></script>
<script src="https://files.bpcontent.cloud/2024/10/06/10/20241006104845-C8MQIMON.js"></script>
</body>
</html>