forked from acm-uga/acm-uga.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
92 lines (86 loc) · 3.95 KB
/
events.html
File metadata and controls
92 lines (86 loc) · 3.95 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<html>
<head>
<title>ACM-UGA</title>
<link rel="stylesheet" href="resources/styles/styles.css">
<link rel="stylesheet" href="resources/styles/eventStyle.css">
<script src="upcomingEvents.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="shortcut icon" type="image/png" href="resources\favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body onload="renderEventSlide()">
<div id="banner">
<div id="imgBan">
<img src="resources/logo.png">
<div class="topnav-right">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="events.html">EVENTS</a></li>
<li><a href="resources.html">RESOURCES</a></li>
<li><a href="workshops.html">WORKSHOPS</a></li>
<li><a href="about.html">ABOUT US</a></li>
</ul>
</div>
</div>
</div>
<div class="body">
<div class="leftNavigation">
<div
style="background-color: #333; padding: 5px; border-top: #fffafa solid 2px; border-bottom: #fffafa solid 3px;">
<h2 style="color: #fffafa; font-size: 200%;">Our Event Archive</h2>
</div>
</div>
<div class="rightNavigation">
<h2 style="color: #ba1b11; font-size: 200%;">Our Calendar</h2>
<iframe
src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23616161&ctz=America%2FNew_York&showTabs=0&showPrint=0&showCalendars=0&showTz=0&showTitle=0&src=M2NnNTd0OGhmYWM3aWcxajRmZ3Btcm1kMThAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ&color=%23D81B60"
style="border:solid 1px #777" width="100%" height="800" frameborder="0" scrolling="no"></iframe>
<h2 style="color: #ba1b11; font-size: 200%;">Upcoming Events</h2>
<ul id="upcomingEvents"></ul>
</div>
</div>
<footer>
<div id="footer-columns">
<div class="footer-column left-footer-column">
<h2>ACM at UGA</h2>
<p>ACM at UGA is the University of Georgia chapter of the Association for Computing Machinery. Our goal
is to represent
computing majors and promote computing-related causes on campus and beyond.
</p>
<p>Email: ugaacm@uga.edu</p>
</div>
<div class="footer-column middle-footer-column">
<h2>Partners</h2>
<p>ACM-W girls.code()</p>
<p>Society for Cyber Security</p>
<p>CSIP</p>
<p>UGAHacks</p>
<p id="copyright">© ACM at UGA 2022</p>
</div>
<div class="footer-column right-footer-column">
<h2>Join Us</h2>
<div id="social-media">
<a href="https://discord.gg/pZsm6vb3Bc">
<img class="help" src="resources/social_img/discord.png">
</a>
<br>
<a href="https://www.instagram.com/acmuga">
<img class="help" src="resources/social_img/insta.png">
</a>
<br>
<a href="https://github.com/acm-uga">
<img class="help" src="resources/social_img/github.png">
</a>
<br>
<a href="https://github.com/acm-uga/archive">
<img class="help" src="resources/social_img/csip.png">
</a>
</div>
</div>
</div>
</footer>
</body>
</html>