-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
103 lines (86 loc) · 3.09 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>The Unicrew</title>
<script src="index.js"></script>
<link href="index.css" rel="stylesheet" type="text/css" />
<link href="contact.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans+SC:300,400" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" media="all">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="menu.js"></script>
</head>
<body>
<div class="navigation">
<a href="index.html" class="logo"><img src="img/logo.jpeg" title="Home" /></a>
<div class="menu-row">
<div class="menu" onclick="myFunction(this)">
<script>function myFunction(x) {x.classList.toggle("change");}</script>
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</div>
<div class="navbuttons">
<ul>
<a href="videos.html"><li>Videos</li></a>
<a href="about.html"><li>About Us</li></a>
<a href="contact.html"><li>Contact Us</li></a>
</ul>
</div>
<div class="social">
<ul>
<li>
<a href="http://www.instagram.com/theunicrew"><img src="img/Insta.png" title="Instagram"></a>
</li>
<li>
<a href="http://www.youtube.com/user/unicycleunicrew"><img src="img/youtube.png" title="YouTube"></a>
</li>
<li>
<a href="http://www.facebook.com/theunicrew"><img src="img/facebook.png" title="Facebook"></a>
</li>
</ul>
</div>
</div>
<div class="header">
<div class="header-content">
</div>
</div>
<div id="wrapper">
<div class="info">
<h1>Contact Us</h1>
<div class="contacts" id="contact-facebook">
<a href="http://www.facebook.com/theunicrew">
<img src="img/facebook.png" title="Facebook" id="FB">
<h3>facebook.com/theunicrew</h3>
</a>
</div>
<div class="contacts" id="contact-insta">
<a href="http://www.instagram.com/theunicrew">
<img src="img/Insta.png" title="Instagram" id="insta">
<h3>@theunicrew</h3>
</a>
</div>
<div class="contacts" id="contact-email">
<img src="img/email.png" title="[email protected]" id="email">
<a href="mailto:[email protected]">
<h3>[email protected]</h3>
</a>
</div>
<div id="last">
<div class="contacts">
<p>Send us an email or a direct message on Facebook or Instagram!</p>
</div>
</div>
</div>
</div>
<div class="footer">
<a href="http://anthony.limiero.com" title="Anthony Limiero"><img src="img/Anthony_logo_white.gif"></a>
Copyright 2017. Site by Anthony Limiero. All Rights Reserved.
</div>
</body>
</html>