-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
75 lines (69 loc) · 3.22 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
<!--Kate Blake-->
<!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" />
<link rel="stylesheet" href="./css/style.css" type="text/css" />
<title>Contact - Second Hand</title>
<link rel="icon" href="./images/circlelogo80.png" type="image/x-icon" />
</head>
<body>
<script>
0;
</script>
<header>
<img class="logo" src="./images/circlelogo80.png" alt="Thrift Fest Logo" />
<h1 class="logo-heading" style="color: var(--accentMain)">Second Hand Thrift Fest</h1>
<input type="checkbox" class="nav-toggle" name="nav-toggle" id="nav-toggle" />
<!--This is for the responsive menu-->
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./gallery.html">Gallery</a></li>
<li><a href="./bookings.html">Bookings</a></li>
<li><a href="./contact.html" class="is-active">Contact</a></li>
</ul>
</nav>
<label for="nav-toggle" class="nav-toggle-label">
<!--This is for the responsive menu-->
<span></span>
</label>
</header>
<div class="contact-container">
<section class="contact">
<h1>Get In Touch!</h1>
<h2>Talk to us! Whether it's feedback, a question or booking a gig, we'd be happy to hear from you.</h2>
<div class="contact-info">
<h3 class="contact-heading">Event Organiser:</h3>
<p>Laura Rainbird</p>
<h3 class="contact-heading">Email Address:</h3>
<p>thriftfest123@gmail.com</p>
<h3 class="contact-heading">Cellphone Number:</h3>
<p>021 123 4567</p>
</div>
<div class="contact-links">
<p><em>Facebook Group:</em></p>
<p><em>Instagram:</em></p>
<p><em>Facebook Marketplace:</em></p>
<a href="https://www.facebook.com/OfficialSecondHandGroup/" target="_blank" rel="noopener" rel="noreferrer"><img src="./images/fb250darkgreen.png" alt="Official Facebook Page" /></a>
<a href="https://www.instagram.com/thriftfest/" target="_blank" rel="noopener" rel="noreferrer"> <img src="./images/instagreen.png" alt="Official Instagram Page" /></a>
<a href="https://www.facebook.com/groups/433426486699879" target="_blank" rel="noopener" rel="noreferrer"><img src="./images/fb250darkgreen.png" alt="Official Facebook Marketplace" /></a>
</div>
</section>
</div>
<footer>
<p>© Designed by Kate Blake, All Rights Reserved</p>
<div class="socials">
<a href="https://www.facebook.com/OfficialSecondHandGroup/" target="_blank" rel="noopener" rel="noreferrer"
><img src="./images/fb250lightgreen.png" height="40px" alt="Facebook Page Link"
/></a>
<a href="https://www.instagram.com/thriftfest/" target="_blank" rel="noopener" rel="noreferrer"><img src="./images/instalightgreen.png" height="40px" alt="Instagram Page Link" /></a>
</div>
<div class="back-to-top"><a href="#top">Back to Top</a></div>
</footer>
</body>
</html>