-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
44 lines (44 loc) · 1.77 KB
/
contact.html
File metadata and controls
44 lines (44 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Contact Us</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<header>
<a href="index.html"><img id="logo" src="images/mandelbot_logo.png" /></a>
<ul id="topLinks">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
<div id="mainContent">
<h1>Contact Us</h1>
<h2>Reach us online at</h2>
<ul>
<li>Email: <a href="mailto:urbanaftc@gmail.com">urbanaftc@gmail.com</a></li>
<li>Facebook: <a href="https://www.facebook.com/Team12063/">Team12063</a></li>
<li>Instagram: <a href="https://www.instagram.com/themandelbots/">themandelbots</a></li>
<li>Twitter: <a href="https://twitter.com/urbanaftc">@urbanaftc</a></li>
<li>YouTube: <a href="https://www.youtube.com/channel/UCPvDhf4c15mjKNb2U0naZSQ">The Mandelbots</a></li>
<li>GitHub: <a href="https://github.com/mandelbots">mandelbots</a></li>
</ul>
</div>
<footer>
<h2>Proudly sponsored by</h2>
<img class="sponsor" src="images/omnified.png" />
<img class="sponsor" src="images/united_theraphutics.png" />
<p><a href="https://github.com/mandelbots/mandelbots.github.io">Website source code</a></p>
</footer>
<script src="js/dynamic_footer.js"></script>
</body>
</html>