-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
82 lines (71 loc) · 2.29 KB
/
about.html
File metadata and controls
82 lines (71 loc) · 2.29 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>About 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">
Join the Team
</a>
<a href="/about.html" class="highlight">
About Us
</a>
<a href="/sponsors.html">
Sponsors
</a>
<!--
<a href="/">
Blog
</a>
-->
</nav>
</header>
<main>
<div class="bg bg-grey">
<section>
<img src="/img/team.webp" alt="Team Photo of UAARG's 2025 Team" />
<div class="text">
<h1>About Us</h1>
<p>We are a group of motivated university students <b> building the future
of autonomous aircraft.</b> Since our inception in 2004 our focus lies in
overcoming complex engineering challenges
associated with fully autonomous drones.
</p>
<p> We design, manufacture and rigorously test our drones
<b>from scratch</b> while annually representing University of Alberta in
national and international RPAS competitions.
</p>
<div class="row end">
<a href="/join.html" class="primary button">Join Us</a>
</div>
</div>
</section>
</div>
<section>
<!-- TODO: Team Leads + Execs Photos -->
</section>
</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>