-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
49 lines (43 loc) · 1.9 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ML-Scope Solutions</title>
<link rel="icon" type="image/x-icon" href="aida-logo.jpeg" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<div class="container">
<a href="index.html">
<img src="aida-logo.jpeg" alt="Logo" class="logo" />
</a>
<div class="nav-links">
<a href="index.html">Problems</a>
<a href="solutions.html">Solutions</a>
<a href="leaderboard.html">Leaderboard</a>
<a href="resources.html">Resources</a>
</div>
</div>
</nav>
<div class="container">
<h1>About</h1>
<div id="content"></div>
</div>
<div class="about-content" style="padding-left: 5vw">
<h2>Our Mission:</h2>
<p>
We seek to educate UIUC students on the fundamentals and state of the art topics in machine learning and data science. We have weekly/biweekly <a href="index.html">problems</a> that ramp up in difficulty and give a large breadth.
</p>
<h2>For Students:</h2>
<p>
We accept everyone as a member to the organization, as long as you are willing to learn and treat other members kindly with respect. There is no formal process to join the club, simply join the <a href="https://discord.gg/baZtMrqXan">Discord server</a> and we will post when our events are in the announcements channel. As of Spring 2025, we meet on Sundays at 1310 DCL, 12:30pm.
</p>
<h2>For Companies:</h2>
<p>
We are always looking for companies to sponsor our club and provide us with resources to help our members learn. If you are interested in sponsoring us, please reach out by emailing <a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>
</body>
</html>