-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
66 lines (60 loc) · 2.56 KB
/
contact.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
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- TAB INFO -->
<title>University of Regina CSSS</title>
<link rel="icon" href="files/CSSS Icon.png" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<!-- IMPORTING FONTS -->
<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=Fira+Code&display=swap" rel="stylesheet">
</head>
<body>
<nav class="nav-bar">
<div class="logo">
<a href="index.html"><img src="files/CSSS Logo.png" alt="CSSS Logo"></a>
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="links">
<ul>
<li><a href="events.html"><EVENTS></a></li>
<li><a href="team.html"><THE TEAM></a></li>
<li><a href="minutes.html"><MEETINGS></a></li>
<li><a href="contact.html"><CONTACT></a></li>
<li><a href="https://ursu.campusgroups.com/CSSS/club_signup"><SIGN UP></a></li>
</ul>
</div>
</nav>
<div class="header">
<div class="box">
<h2 class="title">Contact</h2>
<div class="desc">Feel free to reach out via email or Instagram!</div>
</div>
</div>
<div class="contact">
<div class="info">
Computer Science Students' Society <br>
Classroom Building 121 <br>
University of Regina <br>
3737 Wascana Parkway <br>
Regina, Saskatchewan S4S 0A2 <br>
Email: <a href="mailto:csss.uofr@gmail.com"> csss.uofr@gmail.com </a> <br>
</div>
</div>
<div class="footer">
<div class="text">© University of Regina CSSS</div>
<div class="social">
<a href="https://discord.gg/vvSun3HSp4"><img src="files/Discord Logo.png" alt="discord"></a>
<a href="https://www.facebook.com/ureginaCSSS"><img src="files/facebook-color.png" alt="facebook"></a>
<a href="https://www.instagram.com/csss.uofr/"><img src="files/instagram-color.png" alt="instagram"></a>
</div>
</div>
</body>
</html>