-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (85 loc) · 3.63 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UB ACM - University at Buffalo</title>
<link rel="stylesheet" href="/css/style.css">
<script defer src="/components/header.js"></script>
<script defer src="/components/footer.js"></script>
</head>
<body>
<div id="headerInject"></div>
<main>
<div id="about">
<h1>
We are UB ACM
</h1>
<h2>
Our Mission:
</h2>
<p>
Empowering students and provide guidance on their journey in
computer science through an array of student-led initiatives
and events, we foster an environment of learning and exploration.
</p>
</div>
<div id="events">
<h1>
Events
</h1>
<h3>
Hack Nights
</h3>
<p>
Build awesome projects, do homework, or just hang out with your fellow peers at hack night!
Hack Nights
event series are recurring Saturday events where we gather, socialize, and work together.
The event is sponsored by reputable companies from Buffalo and major tech hub.
Learn more about Hack Nights here.
</p>
<h3>
Internships and Resume Review
</h3>
<p>
Workshops: <br>
Discover a variety of introductory workshops led by experienced upperclassmen, covering technologies used in industry and academia.
Topics include Introductory Python, Docker, Web Development, and Resume Reviews.
</p>
<p>
Tech Talks: <br>
Delve into in-depth talks presented by university professors and industry speakers from leading companies including Cisco, Microsoft, and Stripe.
Connect with professionals, explore their tools, and gain insights into their work.
</p>
<p>
Social Events: <br>
Unwind and network at various social events, including board game nights, bowling, and barbecues.
We also collaborate with companies such as Bloomberg to organize sponsored social events for students.
</p>
</div>
<!-- <div id="eboard">
<h1>
Eboard
</h1>
</div> -->
<div id="socials">
<h1>Stay up to date!</h1>
<div style="display: flex; justify-content: center;">
<div class="socialWidget">
<p>Join our Discord</p>
<a href="https://discord.com/invite/ySkMjQ2PqB">
<img src="/assets/discord.svg" alt="" height="50">
</a>
</div>
<div class="socialWidget">
<p>Follow us on Instagram</p>
<a href="https://instagram.com/ubacm">
<img src="/assets/instagram.png" alt="" height="50">
</a>
</div>
</div>
</div>
</main>
<div id="footerInject"></div>
</body>
</html>