-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
221 lines (201 loc) · 8.4 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Queenstown Booking</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Slab:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"><script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</head>
<body>
<script>
(function () {
'use strict'
window.addEventListener('load', function () {
// Fetch all the forms we want to apply custom Bootstrap validation styles to
var forms = document.getElementsByClassName('needs-validation')
// Loop over them and prevent submission
Array.prototype.filter.call(forms, function (form) {
form.addEventListener('submit', function (event) {
if (form.checkValidity() === false) {
event.preventDefault()
event.stopPropagation()
}
form.classList.add('was-validated')
}, false)
})
}, false)
}())
</script>
<!-- Nav BAr -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#"> <img src="img/" alt=""> </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" >
<h2>Queenstown Tour</h2>
<ul class="navbar-nav mr-auto " >
<li class="nav-item ">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="activ.html">Activities</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="booking.html">Booking</a>
</li>
<li class="nav-item active">
<a class="nav-link " href="contact.html" >Contact</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<!-- form -->
<form id="contact" action="http://sit.robertclarkson.net/submission.php" method="post">
<div class="container">
<div class="padd">
<div class="row">
<div class="col-md-6">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2819.831107826518!2d168.74242871587123!3d-45.02835387909826!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0xa9d51e36f0684341%3A0xa6cb6e765bc9b4d2!2s11%20Copper%20Beech%20Avenue%2C%20Frankton%2C%20Queenstown%209300!5e0!3m2!1sen!2snz!4v1596410251171!5m2!1sen!2snz"></iframe>
</div>
<div class="col-md-6">
<div class="bodder">
<h1>Contact Us</h1>
<div class="row">
<div class="col-md-6">
<label for="firstName">First name</label>
<input type="text" class="form-control" id="firstName" name="firstName" placeholder="" value="" required>
<div class="invalid-feedback">
Valid first name is required.
</div>
</div>
<div class="col-md-6">
<label for="lastName">Last name</label>
<input type="text" class="form-control" id="lastName" name="lastName" placeholder="" value="" required>
<div class="invalid-feedback">
Valid last name is required.
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<label for="email">Email </label>
<input type="email" class="form-control" id="email" name="email" placeholder="you@example.com" value="" required>
<div class="invalid-feedback">
Please enter a valid email address for shipping updates.
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<label for="exampleFormControlTextarea1">Query</label>
<textarea class="form-control" id="query" rows="5" name="query" required></textarea>
<div class="invalid-feedback">
Please Enter the query.
</div>
</div>
</div>
<div class="col-md-6"> <br>
<input type="submit" value="Submit">
</div>
</div>
</div>
</div>
</div>
</div>
</form>
<footer>
<div class="page-footer font-small mdb-color pt-4">
<div class="container text-center text-md-left">
<div class="row text-center text-md-left mt-3 pb-3">
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Queenstown Tour</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.</p>
</div>
<hr class="w-100 clearfix d-md-none">
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Activities</h6>
<p>
<a href="booking.html">Skiing</a>
</p>
<p>
<a href="booking.html">Mountain Flight</a>
</p>
<p>
<a href="booking.html">Hiking</a>
</p>
<p>
<a href="booking.html">Jet Boat </a>
</p>
<p>
<a href="booking.html">Biking </a>
</p>
<p>
<a href="booking.html">Gandola </a>
</p>
</div>
<hr class="w-100 clearfix d-md-none">
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Contact Us</h6>
<p>
<i class="fa fa-home mr-3"></i>11 Copper Beech, Frankton</p>
<p>
<i class="fa fa-envelope mr-3"></i> info@gmail.com</p>
<p>
<i class="fa fa-phone mr-3"></i> + 64 234 9843 55</p>
<p>
<i class="fa fa-print mr-3"></i> + 64 234 8754 09</p>
</div>
</div>
<div class="row d-flex align-items-center">
<div class="col-md-5 col-lg-4 ml-lg-0">
<div class="text-center text-md-right">
<ul class="list-unstyled list-inline">
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1" href="https://www.facebook.com/">
<i class="fa fa-facebook-f"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1" href="https://www.twitter.com/">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1" href="https://www.google.com/gmail/">
<i class="fa fa-google"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1" href="https://www.instagram.com/">
<i class="fa fa-instagram"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="copyright">
<script>
document.write('©' );
document.write(' 2019 - ');
document.write(new Date().getFullYear());
document.write(' Queenstown tour - All Rights Reserved.');
document.write('<br/>Last Updated : ');
document.write(document.lastModified);
</script>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html>