-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
47 lines (43 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Troy Game Development Club</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="gamedevfav96.png" type="image/png" />
</head>
<body>
<div class="navbar">
<img src="bannerlogo.png" width="170" height="85" />
<div class="navanchors">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">Meet the Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="intro">
<h1>contact us</h1>
<p>
If you would like to join our club or have any questions, you can reach
us via email.
</p>
</div>
<div id="contactLinks">
<a href="https://forms.gle/VtJ55XrLo8o59dUS6" class="mail">
<strong>Join us!</strong><br />
<img src="forms.png" width="128" height="128" />
</a>
<a
href="https://mail.google.com/mail/?view=cm&fs=1&[email protected]"
class="mail"
>
<strong>[email protected]</strong><br />
<img src="gmail-512.png" width="128" height="128" />
</a>
</div>
</body>
</html>