generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththank.html
122 lines (122 loc) · 3.53 KB
/
thank.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta
name="description"
content="Meet your accommodation at Pepe Beach. Located at Barra da Tijuca, it is the perfect place for you and your family to enjoy your holidays in Rio de Janeiro."
>
<meta
name="keywords"
content="accommodation, Rio, Rio de Janeiro, Barra, Barra da Tijuca, airbnb, Praia do Pepe, Pepe Beach, apartment, serviced apartment, holidays, beach, rentals"
>
<!-- CSS Stylesheet link-->
<link rel="stylesheet" href="assets/css/style.css">
<!-- Title -->
<title>Pepe Beach Haven</title>
<!-- Favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/favicon/apple-touch-icon.png"
>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon/favicon-32x32.png"
>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon/favicon-16x16.png"
>
</head>
<body>
<header>
<div id="logo">
<!-- Logo image-->
<a href="index.html"
><img
id="logo-image"
src="assets/images/logo.png"
alt="Logo depicting an apartment block by the sea"
></a>
</div>
<!-- Logo -->
<div id="logo-text">
<a href="index.html"><h1>Pepe Beach Haven</h1></a>
</div>
<!-- Navigation menu -->
<div id="menu-nav">
<input type="checkbox" id="nav-toggle" name="nav-toggle">
<label for="nav-toggle" class="nav-toggle-label"
><i class="fa-solid fa-bars"></i
></label>
<nav id="menu">
<ul id="menu-items">
<li>
<a href="index.html" aria-label="Go back to the home page"
>Home</a
>
</li>
<li>
<a href="accommodation.html" aria-label="Go to accommodation page"
>Accommodation</a
>
</li>
<li>
<a href="faq.html" aria-label="Go back to faq page">FAQ</a>
</li>
<li>
<a
class="active"
href="contact.html"
aria-label="Go to the contact us page"
>Contact us</a
>
</li>
</ul>
</nav>
</div>
</header>
<!-- Main content -->
<main id="thank-main">
<section id="thankyou">
<h2>We have received your message and will get back to you as soon as possible. Thank you!</h2>
</section>
</main>
<!-- Footer -->
<footer>
<ul id="footer-links">
<li>
<a href="contact.html" aria-label="Go to the contact us page"
><i class="fa-solid fa-envelope"></i> Contact us</a
>
</li>
<li>
<a
href="http://airbnb.com/h/beach-and-mountains-rio"
target="_blank"
aria-label="Visit the accommodation's airbnb page (opens in a new tab)"
><i class="fa-brands fa-airbnb"></i> Book now</a
>
</li>
<li>
<a
href="faq.html"
aria-label="Frequently asked questions"
><i class="fa-solid fa-circle-question"></i> FAQ</a
>
</li>
</ul>
</footer>
<!-- Font awasome kit -->
<script
src="https://kit.fontawesome.com/e87966439a.js"
crossorigin="anonymous"
></script>
</body>
</html>