-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (71 loc) · 2.38 KB
/
Copy pathindex.html
File metadata and controls
76 lines (71 loc) · 2.38 KB
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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Machine Learning Club @ Penn State</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1, h2 {
color: #bb86fc;
}
.join-button {
display: inline-block;
background-color: #03dac6;
color: #000000;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
margin-top: 20px;
}
.join-button:hover {
background-color: #018786;
}
</style>
</head>
<body>
<div class="container">
<h1>Machine Learning Club @ Penn State</h1>
<h2>About Us</h2>
<p>We are a club focused on Research and Implementations in the field of Machine Learning. Our goal is to provide a platform for students interested in ML to learn, collaborate, and grow their skills.</p>
<h2>What We Do</h2>
<ul>
<li>Conduct research projects in Machine Learning</li>
<li>Implement ML algorithms and techniques</li>
<li>Organize workshops and training sessions</li>
<li>Collaborate on real-world ML applications</li>
</ul>
<h2>Who Can Join?</h2>
<p>We welcome students from all years and backgrounds, including:</p>
<ul>
<li>Freshmen</li>
<li>Sophomores</li>
<li>Juniors</li>
<li>Seniors</li>
<li>Masters students</li>
<li>PhD students</li>
</ul>
<h2>Why Join?</h2>
<ul>
<li>Gain hands-on experience with ML projects</li>
<li>Network with like-minded students and professionals</li>
<li>Enhance your resume with practical ML skills</li>
<li>Participate in exciting research opportunities</li>
</ul>
<a href="https://app.youform.com/forms/euegcuxu" class="join-button">Join Here</a>
</div>
</body>
</html>