generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
185 lines (161 loc) · 7.32 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en-US">
<!-- Head section -->
<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" />
<meta name="description" content="Travel agency. Offering tour packages for individuals or groups." />
<meta name="keywords" content="holiday, travel, best value, package holidays, book cheap holidays" />
<title>Travel Destinations</title>
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="icon" type="image/x-icon" href="assets/images/favicon/favicon.ico" />
<link rel="apple-touch-icon" href="assets/images/favicon/apple-touch-icon.png" />
</head>
<!-- Body section -->
<body>
<!-- Hero video -->
<div class="video-container">
<video class="fullscreen-video" poster="assets/images/poster_big.webp" loop muted autoplay>
<source src="assets/images/hero_1080.mp4" type="video/mp4" />
</video>
</div>
<!-- Header section -->
<header>
<!-- Logo -->
<a href="index.html">
<img id="logo" src="assets/images/logo_new.webp" alt="Travel Destinations company logo" />
</a>
<!--Nav menu - adapted for this project from:
https://moderncss.dev/css-only-accessible-dropdown-navigation-menu/ -->
<nav aria-label="Main Navigation">
<ul>
<li>
<a href="index.html" aria-label="Click here to open Homepage">Home</a>
</li>
<li class="dropdown">
<button type="button" class="dropdown__title" aria-label="Destinations">
Destinations
</button>
<ul class="dropdown__menu">
<li>
<a href="italy.html" aria-label="Click here to open Italy page">Italy</a>
</li>
<li>
<a href="spain.html" aria-label="Click here to open Spain page">Spain</a>
</li>
<li>
<a href="portugal.html" aria-label="Click here to open Portugal page">Portugal</a>
</li>
<li>
<a href="greece.html" aria-label="Click here to open Greece page">Greece</a>
</li>
<li>
<a href="turkey.html" aria-label="Click here to open Turkey page">Turkey</a>
</li>
<li>
<a href="croatia.html" aria-label="Click here to open Croatia page">Croatia</a>
</li>
</ul>
</li>
<li>
<a href="contact.html" aria-label="Click here to open Contact us page">Contact us</a>
</li>
</ul>
</nav>
</header>
<!-- Main content -->
<main>
<h1>Contact us</h1>
<div class="contact_content_container">
<!-- Embeded map section -->
<div class="map_contact">
<iframe title="Travel destinations Ashbourne" class="map_iframe"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2372.5028372625206!2d-6.401335384063575!3d53.51307596991046!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x4867158a645d3da5%3A0x1d62aee185534ebb!2straveldestinations!5e0!3m2!1sen!2sie!4v1647535872883!5m2!1sen!2sie"
style="border: 0" allowfullscreen="" loading="lazy"></iframe>
<!-- Contact details section -->
<div class="contact_details_adr">
<ul>
<li>
<a href="mailto:[email protected]"
aria-label="Click here to send an email to Travel Destinations (opens in mail app)"><i
class="fa-solid fa-envelope"></i>Email:
</li>
<li>
<a href="tel:(01)1234567" aria-label="Click here to call Travel Destinations (opens in phone app)"><i
class="fas fa-phone"></i>Tel: (01) 1234567
</a>
</li>
<li>
<a href="https://www.google.com/maps/place/Traveldestinations/@53.513073,-6.399147,16z/data=!4m5!3m4!1s0x0:0x1d62aee185534ebb!8m2!3d53.5130728!4d-6.3991467?hl=en"
aria-label="Click here to find us (opens in maps app)" target="_blank"><i
class="fa-solid fa-map-location-dot"></i>5 Frederick St,
Milltown, Ashbourne, Co. Meath</a>
</li>
</ul>
</div>
</div>
<!-- Form section -->
<div class="form_container">
<form method="GET" action="thanks.html" class="signup_form">
<h2>
Tell us where you want to go!<i class="fa-solid fa-umbrella-beach"></i>
</h2>
<label for="fname">First Name:</label><br />
<input placeholder="Enter your first name" class="text-input" id="fname" name="first_name" type="text"
required /><br />
<label for="lname">Last Name:</label><br />
<input placeholder="Enter your last name" class="text-input" id="lname" name="last_name" type="text"
required /><br />
<label for="email">Email Address:</label><br />
<input placeholder="Enter your email" class="text-input" type="email" id="email" name="email_address"
required /><br />
<fieldset>
<legend>
Destination of interest (you can choose more than one):
</legend>
<label><input name="prefer" value="italy" type="checkbox" class="input_checkbox" />Italy</label><br />
<label><input name="prefer" value="spain" type="checkbox" class="input_checkbox" />Spain</label><br />
<label><input name="prefer" value="portugal" type="checkbox" class="input_checkbox" />Portugal</label><br />
<label><input name="prefer" value="greece" type="checkbox" class="input_checkbox" />Greece</label><br />
<label><input name="prefer" value="turkey" type="checkbox" class="input_checkbox" />Turkey</label><br />
<label><input name="prefer" value="croatia" type="checkbox" class="input_checkbox" />Croatia</label>
</fieldset>
<br />
<label for="message">Send us a message:</label>
<br />
<textarea placeholder="Please enter your queries here" id="message" name="message"></textarea><br />
<input class="join-button" type="submit" value="Send" />
</form>
</div>
</div>
<!-- Footer section -->
<footer class="contact_footer">
<ul class="social-networks">
<li>
<a href="https://www.facebook.com" aria-label="Go to our facebook page (opens in new tab)" target="_blank"><i
class="fab fa-facebook"></i></a>
</li>
<li>
<a href="https://www.twitter.com " aria-label="Go to our twitter page (opens in new tab)" target="_blank"><i
class="fab fa-twitter-square"></i></a>
</li>
<li>
<a href="https://www.youtube.com" aria-label="Go to our youtube page (opens in new tab)" target="_blank"><i
class="fab fa-youtube"></i></a>
</li>
<li>
<a href="https://www.instagram.com" aria-label="Go to our instagram page (opens in new tab)"
target="_blank"><i class="fab fa-instagram"></i></a>
</li>
</ul>
<p>
*This site is for educational purposes only, all images and videos
remain the property of the owners.
</p>
</footer>
</main>
<script src="https://kit.fontawesome.com/add0cc32e5.js" crossorigin="anonymous"></script>
</body>
</html>