generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
thankyou-contact.html
144 lines (124 loc) · 5.24 KB
/
thankyou-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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Plant Cafe, vegan cafe and houseplant shop located in Dublin 2. ">
<meta name="keywords" content="Dublin, Houseplants, Coffeeshop, Cafe">
<meta name="author" content="Plant Cafe">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://www.davidindub.com/plant-cafe/">
<meta property="og:type" content="website">
<meta property="og:title" content="Plant Cafe">
<meta property="og:description" content="Plant Cafe, vegan cafe and houseplant shop located in Dublin 2. ">
<meta property="og:image" content="https://www.davidindub.com/plant-cafe/assets/images/social-preview.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="davidindub.com">
<meta property="twitter:url" content="https://www.davidindub.com/plant-cafe/">
<meta name="twitter:title" content="Plant Cafe">
<meta name="twitter:description" content="Plant Cafe, vegan cafe and houseplant shop located in Dublin 2. ">
<meta name="twitter:image" content="https://www.davidindub.com/plant-cafe/assets/images/social-preview.png">
<!-- Font Awesome Link -->
<script src="https://kit.fontawesome.com/b5ec715163.js" crossorigin="anonymous"></script>
<!-- Favicon Links -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<!-- Link to Stylesheet -->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Thank You - Plant Cafe</title>
<!-- Redirects the User back to Homepage after 10 seconds -->
<meta http-equiv="refresh" content="10; url=index.html">
</head>
<body>
<!-- Header and Nav -->
<header class="container">
<h1 id="logo"><a href="index.html" id="logo-link">Plant Cafe</a></h1>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="menu.html">Menu</a>
</li>
<li>
<a href="visitus.html">Visit Us</a>
</li>
<li>
<a href="events.html">Events</a>
</li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main class="container">
<section id="thankyou-content">
<p>
Thanks for getting in touch, we will respond to you as soon as possible!
</p>
<small>
Redirecting you back to our home page in 10 seconds…
</small>
</section>
</main>
<!-- Footer -->
<footer class="container">
<!-- Footer Opening Hours & Email -->
<div class="footer-section">
Mon-Fri <time>08:00</time> - <time>17:00</time><br>
Sat-Sun <time>10:00</time> - <time>17:00</time><br><br>
<a href="mailto:hello@plantcafe.ie">hello@plantcafe.ie</a>
</div>
<!-- Footer Nav Links -->
<div class="footer-section">
<ul id="footer-nav">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="menu.html">Menu</a>
</li>
<li>
<a href="visitus.html">Visit Us</a>
</li>
<li>
<a href="events.html">Events</a>
</li>
</ul>
</div>
<!-- Social Media Links -->
<div class="footer-section">
<ul class="footer-socials">
<li>
<a href="https://www.facebook.com" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)">
<i class="fab fa-2x fa-facebook"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com" target="_blank" rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)">
<i class="fab fa-2x fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)">
<i class="fab fa-2x fa-instagram"></i>
</a>
</li>
<li>
<a href="https://www.youtube.com" target="_blank" rel="noopener"
aria-label="Visit our YouTube channel (opens in a new tab)">
<i class="fab fa-2x fa-youtube"></i>
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>