-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcontact.html
46 lines (34 loc) · 1.71 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
<!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">
<!-- include scripts.js and only run when ready -->
<script src="../scripts.js" defer></script>
<link rel='stylesheet' type='text/css' href='./styles.css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<title>Programming Club: Home</title>
</head>
<body>
<div id="nav"></div>
<!-- Center everything -->
<div class="content">
<h1>Contact Us!</h1>
<p>Please reach out! We'd love to meet you!</p>
<!-- links to socials as a list -->
<div style="margin-left: 0; display: flex">
<li style="display: inline;"><a class="button" href="https://discord.gg/UgBWyaaeus" target=”_blank”>Discord</a></li>
<!-- <li style="display: inline;"><a href="https://www.facebook.com/UTASProgrammingClub/">Facebook</a></li> -->
<li style="display: inline;"><a class="button" href="https://www.instagram.com/programmingclub.tas/" target=”_blank”>Instagram</a></li>
<!-- <li style="display: inline;"><a href="https://github.com/UTAS-Programming-Club">Github</a></li> -->
<li style="display: inline;"><a class="button" href="mailto: contact@programmingClub.com.au" target=”_blank”>Email</a></li>
</div>
<img src="./assets/photos/c+s_pic.jpg"
alt="The committee and some members at 2023 Clubs and Societies Day, Hobart"
title="Clubs and Societies Day 2023"
class = "photo"
>
</div>
</body>
</html>