generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
171 lines (171 loc) · 4.9 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!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="contact-main-center-aligned">
<section id="contact">
<form
id="contact-form"
method="get"
action="thank.html"
>
<h2>Get in touch</h2>
<input
class="form"
type="text"
name="first_name"
required pattern=".*\S+.*" title="This field is required"
placeholder="First Name"
>
<br>
<input
class="form"
type="text"
name="last_name"
required pattern=".*\S+.*" title="This field is required"
placeholder="Last Name"
>
<br>
<input
class="form"
type="email"
name="email_address"
placeholder="Contact Email"
required
>
<br>
<textarea
name="message"
rows="10"
placeholder="Type your message here"
></textarea>
<br>
<input id="submit" class="button" type="submit" value="Send">
</form>
</section>
<!-- Aside -->
<aside class="center-aligned bottom-aligned">
<p>
Ready to book?
<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)"
> Please visit our Airbnb page by clicking here <i class="fa-brands fa-airbnb"></i
></a>
</p>
</aside>
</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>