-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
121 lines (120 loc) · 6.02 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js"></script>
<script type="text/javascript" src="node_modules/bulma-extensions/bulma-carousel/dist/js/bulma-carousel.min.js"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>UMass Amherst ACM</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<section class="hero is-medium is-primary">
<div class="hero-body">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<h1 class="title is-2 is-spaced">
UMass Amherst ACM
</h1>
<h2 class="subtitle is-5">
The UMass Amherst ACM is the student branch for UMass Amherst's <strong>Association for Computing Machinery (ACM)</strong>.
<br>
UMass ACM strives to create an involved community for UMass Amherst students in the College of Information and Computer Sciences, the College of Engineering, and the College of Natural Sciences.
</h2>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<div class="content">
<h3 class="title is-3 is-spaced">Who are we?</h3>
<p>
We are the ACM Student Chapter for UMass Amherst. We're one of the largest computer science organizations on campus, and we hold events and competitions to enrich the computer science student body here at UMass.
We're here to provide resources and information to CS students at UMass, and our events are often great networking opportunities and learning experiences.
</p>
<p>
Regardless of your previous background, UMass ACM exists to help you develop your technical interests.
We hold tech talks, workshops, programming competitions, and other events to provide UMass students with the resources they need to be successful in Computer Science.
We feature speakers from Google, Amazon, Microsoft, Facebook, any many more!
Our events are a great place to network, make friends, and learn from your peers.
Whether you're looking for someone to co-found your startup, or just need help with your CS250 homework, chances are you'll find what you're looking for by being a part of UMass ACM.
</p>
<h3 class="title is-3 is-spaced">Events</h3>
<p>
We hold a number of events during the school year, such as:
</p>
<h4 class="title is-4 is-spaced">Cambridge Campus Tours</h4>
<p>
We've held tours at Google and Microsoft, and hope to reach the rest of the Cambridge tech companies in the near future. Here are snippets of some we've done in the past:
</p>
<div class='carousel carousel-animated carousel-animate-slide' data-autoplay="true">
<div class='carousel-container'>
<div class='carousel-item has-background is-active'>
<img class="is-background" src="assets/google1.jpeg" alt="" />
<div class="title">Google Cambridge Office</div>
</div>
<div class='carousel-item has-background'>
<img class="is-background" src="assets/google2.jpg" alt="" />
<div class="title">Google Cambridge Office</div>
</div>
<div class='carousel-item has-background'>
<img class="is-background" src="assets/google3.jpg" alt="" />
<div class="title">Google Cambridge Office</div>
</div>
<div class='carousel-item has-background'>
<img class="is-background" src="assets/microsoft1.jpeg" alt="" />
<div class="title">Microsoft Cambridge Office</div>
</div>
<div class='carousel-item has-background'>
<img class="is-background" src="assets/microsoft2.jpg" alt="" />
<div class="title">Microsoft Cambridge Office</div>
</div>
<div class='carousel-item has-background'>
<img class="is-background" src="assets/microsoft3.jpeg" alt="" />
<div class="title">Microsoft Cambridge Office</div>
</div>
</div>
<div class="carousel-navigation is-centered">
<div class="carousel-nav-left">
<i class="fa fa-chevron-left" aria-hidden="true"></i>
</div>
<div class="carousel-nav-right">
<i class="fa fa-chevron-right" aria-hidden="true"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer has-text-centered">
<div class="container">
<div class="columns">
<div class="column is-8-desktop is-offset-2-desktop">
<p class="heart">
Made with <i class="fas fa-heart" style="color:red"></i> by UMass ACM
</p>
<p>
<small>
Source code licensed <a href="http://opensource.org/licenses/mit-license.php">MIT</a>
</small>
</p>
<p style="margin-top: 1rem;">
<a href="http://bulma.io">
<img src="made-with-bulma.png" alt="Made with Bulma" width="128" height="24">
</a>
</p>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="lib/main.js"></script>
</body>
</html>