forked from ML-Fusion-Lab/ML-Fusion-Lab-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qa_schedule.html
142 lines (130 loc) · 5.58 KB
/
qa_schedule.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Q&A - 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="qa-schedule.css">
</head>
<body>
<!-- Header Section -->
<header class="head">
<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="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>
<!-- Q&A Section -->
<section class="qna-section">
<div class="qna-row">
<!-- Latest Q&A Session -->
<div class="qna-tile gradient-box">
<h2>Latest Q&A Session</h2>
<div class="video-wrapper">
<iframe src="https://www.youtube.com/embed/latest-video" allowfullscreen></iframe>
</div>
</div>
<!-- Previous Week's Q&A Video -->
<div class="qna-tile gradient-box">
<h2>Previous Week's Q&A</h2>
<div class="video-wrapper">
<iframe src="https://www.youtube.com/embed/previous-video" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="qna-row">
<!-- FAQs -->
<div class="qna-tile gradient-box">
<h2>Last Week's Q&A FAQs</h2>
<ul class="faq-list">
<li><strong>Q:</strong> How to start learning AI? <br> <strong>A:</strong> Begin with Python and follow structured courses.</li>
<li><strong>Q:</strong> What platforms are good for ML practice? <br> <strong>A:</strong> Try platforms like Kaggle, Coursera, and fast.ai.</li>
<!-- Add more FAQs here -->
</ul>
</div>
<!-- Ask Your Question -->
<div class="qna-tile gradient-box">
<h2>Ask Your Question</h2>
<form>
<input type="text" placeholder="Enter your question here" required>
<button type="submit">Submit</button>
</form>
</div>
</div>
<div class="qna-row">
<!-- Q&A Guidelines -->
<div class="qna-tile gradient-box">
<h2>Q&A Guidelines</h2>
<p>Questions should be relevant and respectful. Avoid spamming or using inappropriate content.</p>
</div>
<!-- Next Q&A Schedule -->
<div class="qna-tile gradient-box">
<h2>Next Q&A Schedule</h2>
<p>Next session: <strong>October 20, 2024</strong>, 6:00 PM IST.</p>
<p>Submit questions by <strong>October 18, 2024</strong> to be featured in the session!</p>
</div>
</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>