-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
66 lines (66 loc) · 2.32 KB
/
events.html
File metadata and controls
66 lines (66 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ACM Luther College</title>
<link rel="stylesheet" href="static/css/style.css" />
<link rel="stylesheet" href="static/css/bootstrap.min.css" />
<link
rel="shortcut icon"
type="image/ico"
href="static/images/favicon.ico"
/>
</head>
<body>
<div id="main">
<nav class="navbar navbar-expand-sm">
<ul class="navbar-nav ml-auto" style="border-radius: 8px">
<li class="nav-item">
<a class="nav-link" href="blog"> Blog </a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html"> Home </a>
</li>
<li class="nav-item">
<a class="nav-link" href="/members.html"> Members </a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://linkedin.com/company/luthercss">
LinkedIn
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/luthercss"> GitHub </a>
</li>
</ul>
</nav>
<div class="container">
<div class="col-md-10">
<h2>Events</h2>
<p>
The CSS usually holds an event every two weeks. These can be social,
informational or skill based events. Subscribe to our calendar to
get updates to our events. In addition to the calendar, you can also
join our
<a href="https://luthercs.slack.com/archives/C6Z17T3CK"
>Slack Channel</a
>
for frequent updates.
</p>
<hr />
</div>
<div class="col-md-8">
<iframe
src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=America%2FChicago&src=Y3NzQGx1dGhlci5lZHU&src=ZW4udXNhI2hvbGlkYXlAZ3JvdXAudi5jYWxlbmRhci5nb29nbGUuY29t&color=%23039BE5&color=%230B8043&showCalendars=1&showTabs=1&showPrint=0&showDate=1&showNav=1"
style=""
width="100%"
height="600"
frameborder="0"
scrolling="no"
></iframe>
</div>
</div>
</div>
</body>
</html>