-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsponsors.html
More file actions
107 lines (89 loc) · 3.34 KB
/
sponsors.html
File metadata and controls
107 lines (89 loc) · 3.34 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!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>UAARG's Sponsors</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">
About Us
</a>
<a href="/sponsors.html" class="highlight">
Sponsors
</a>
<!--
<a href="/">
Blog
</a>
-->
</nav>
</header>
<main>
<div class="bg bg-grey">
<section>
<div class="text flex-1">
<h1>Our Sponsors</h1>
<p>
Thank you to all our past and present sponsors. Without their
generosity, UAARG would not be able to exist.
</p>
<div class="row end">
<a href="https://drive.google.com/file/d/1e1kUquZ5RhgeuoaiKnjVBjTC_PfTa3OZ/view?usp=drive_link" target="_blank" class="primary button">Sponsorship Package</a>
<a href="mailto:uaarginfo@gmail.com" class="primary button">Sponsor Us</a>
</div>
</div>
<img src="/img/uaarg-sponsorshirt.webp" alt="CAD Diagram of Pheon-X2" />
</section>
</div>
<div class="bg">
<section id="sponsors">
<a href="https://www.mnp.ca/" target="_blank">
<img class="sponsor-logo" alt="MNP" src="/img/sponsor-mnp.webp">
</a>
<a href="https://www.ualberta.ca/engineering" target="_blank">
<img class="sponsor-logo" alt="University of Alberta, Faculty of Engineering" src="/img/sponsor-uofaeng.webp">
</a>
<a href="https://www.simnet.aero/" target="_blank">
<img class="sponsor-logo" alt="Simnet" src="/img/sponsor-simnet.webp">
</a>
<a href="https://www.pacesetterdirectional.com/" target="_blank">
<img class="sponsor-logo" alt="Pacesetter Directional" src="/img/sponsor-pacesetter.webp">
</a>
<a href="https://www.suncor.com/" target="_blank">
<img class="sponsor-logo" alt="Suncor" src="/img/sponsor-suncor.webp">
</a>
<a href="https://www.ieee.org/" target="_blank">
<img class="sponsor-logo" alt="IEEE" src="/img/sponsor-ieee.webp">
</a>
<a href="https://scoutworks.ca/" target="_blank">
<img class="sponsor-logo" alt="scoutworks" src="/img/sponsor-scoutworks.webp">
</a>
</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>