-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
42 lines (34 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Contact</title>
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
</head>
<body>
<div id=pageContent>
<!--Start of content here -->
<div id="contactHeader">
<h1> Contact </h1>
</div>
<div class="contact-container">
<a href="mailto:[email protected]" class="contactButton">
<img src="img/microphone.png" alt="Microphone"> Booking
</a>
<a href="https://facebook.com/wingsuitsofficial" class="contactButton" target="_blank" rel="noopener noreferrer">
<img src="img/facebook-logo.png" alt="Microphone"> Facebook
</a>
<a href="mailto:[email protected]" class="contactButton">
<img src="img/envelope.png" alt="Microphone"> Contact
</a>
</div>
<!-- End of content here -->
</div>
<script type="text/javascript" src="scripts/itemHolder.js"></script>
<script type="text/javascript" src="scripts/menu.js"></script>
<script type="text/javascript" src="scripts/easterEgg.js"></script>
</body>
</html>