-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjoin.html
More file actions
82 lines (71 loc) · 2.41 KB
/
join.html
File metadata and controls
82 lines (71 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Join UAARG</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<nav>
<a href="/" class="logo">
<img alt="UAARG Logo" src="/img/logo.webp" />
UAARG
</a>
<div class="flex-1"></div>
<a href="/join.html" class="highlight">
Join the Team
</a>
<a href="/about.html">
About Us
</a>
<a href="/sponsors.html">
Sponsors
</a>
<!--
<a href="/">
Blog
</a>
-->
</nav>
</header>
<main>
<div class="bg bg-grey">
<section>
<div class="text">
<h2>Join UAARG</h2>
<p> If you are a current student at the University of Alberta with a passion for
aerospace, robotics, and drones, join our Discord and follow the onboarding
instructions in <a href="https://docs.google.com/document/d/1OSDyF9sgGDnihKy5j-0Wplv25ZaOMh__uTL0mXYy23s/edit?usp=sharing">#rules-and-info</a>
to become a member of UAARG!
</p>
<p>
Can't access the Discord link? Email us at joinuaarg at gmail dot com.
</p>
<div class="row end">
<a href="https://docs.google.com/document/d/1OSDyF9sgGDnihKy5j-0Wplv25ZaOMh__uTL0mXYy23s/edit?usp=sharing" class="primary button">Join Discord</a>
</div>
</div>
</section>
</div>
<div class="bg">
<section>
<img src="/img/team-competition2025.webp" alt="Team Photo of UAARG's 2025 Team at competition in Medicine Hat, AB" class="hero" />
</section>
</div>
</main>
<footer>
<section>
<p class="center">
<a href="https://www.linkedin.com/company/uaarg/" target="_blank"><img src="/img/linkedin-black.png" class="social-logo" alt="Linkedin"></a>
<a href="https://www.instagram.com/uaarg.ca/" target="_blank"><img src="/img/ig-black.png" class="social-logo" alt="Instagram"></a>
<br>
© UAARG, All Rights Reserved
</p>
</section>
</footer>
</body>
</html>