-
Notifications
You must be signed in to change notification settings - Fork 0
/
pastEvents.html
62 lines (55 loc) · 2.04 KB
/
pastEvents.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZEGRPMZNRV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZEGRPMZNRV');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Past Events | UNSW QSIS</title>
<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=Inter&family=Zen+Maru+Gothic:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<a href="/" class="home-link">
<img class="logo" src="/img/logo.png" alt="UNSW Queer Students in STEM logo">
</a>
<nav>
<a href="/#events">Events</a>
<a href="/#gallery">Gallery</a>
<a href="/join" target="_blank">Join</a>
</nav>
</header>
<main>
<h2 id="pastTitle">Past Events</h2>
<div id="past-events" class="event-box">
</div>
</main>
<footer>
<div class="contactInfo">
<a class="text-link" href="mailto:[email protected]" target="_blank">
Email
</a> • <a class="text-link" href="https://github.com/unswqsis/unswqsis.github.io" target="_blank">
GitHub
</a> • <a class="text-link" href="https://www.linkedin.com/company/unsw-queer-students-in-stem" target="_blank">
LinkedIn
</a>
</div>
<div class="copyright">
<p>
© UNSW Queer Students in STEM 2024
</p>
<img src="/img/arcClubs.png">
</div>
</footer>
<script type="module" src="pastEvents.js"></script>
</body>
</html>