-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathreservation.html
225 lines (214 loc) · 10.9 KB
/
reservation.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
222
223
224
225
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel = "icon" type = "image/png" href = "img/favicon.jpg">
<link rel="stylesheet" href="style.css">
<title>Reservation: Your Choice</title>
</head>
<body>
<header>
<div style="background-image: url(img/reservation.jpeg); background-attachment: fixed; height: 600px; width: 100%; background-position: center; background-repeat: no-repeat; background-size: cover;">
<!-- navbar -->
<nav class="nav navbar fixed-top navbar-expand-lg navbar-dark p-md-3 bg-dark-transparent">
<div class="container">
<a class="navbar-brand" href="#">
<img src="img/logo2.png" height="50" alt="Your choise logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ml-auto mt-2 mt-lg-0">
<li class="nav-item footer-link-item">
<a class="nav-link text-dark" href="index.html">HOME</a>
</li>
<li class="nav-item footer-link-item">
<a class="nav-link text-dark" href="menu.html">MENU</a>
</li>
<li class="nav-item active footer-link-item">
<a class="nav-link text-dark" href="reservation.html">RESERVATION</a>
</li>
<li class="nav-item footer-link-item">
<a class="nav-link text-dark" href="contact.html">CONTACT US</a>
</li>
<li class="nav-item footer-link-item">
<a class="nav-link text-dark" href="about.html">ABOUT US</a>
</li>
</ul>
</div> <!--collapse end-->
</div> <!--container end-->
</nav> <!--navbar end-->
<div class="container flex-column d-flex justify-content-center"style=" height: 600px;">
<div class="text-center py-4" >
<h1 class="text-white py-3">
<span class="font-weight-bold">RESERVATION</span>
</h1>
</div>
<a href="#" class="gotoupbtn"><i class="far fa-arrow-alt-circle-up"></i></a>
</div>
</div>
</header>
<section>
<div class="container shadow py-5 my-5">
<div class="row py-3">
<div class="col-12 text-center px-md-5 px-sm-2 py-3">
<h4>BOOK A TABLE</h4>
<p>We look forward to welcoming you back</p>
<p class="px-md-5 px-sm-2 mx-5">Please note that we require card details to secure your booking. In the event that the reservation is not cancelled with 24 hours' notice, it will result in a charge of £20 per guest.</p>
<hr>
</div>
</div> <!--row end-->
<div class="row py-3 justify-content-center">
<div class="col-md-8 col-sm-12">
<form action="">
<div class="form-row">
<div class="col-md-6 mb-3">
<label for="name">Full Name</label>
<input type="text" class="form-control border-dark" placeholder="Name" required>
</div>
<div class="col-md-6 mb-3">
<label for="email">Email Address</label>
<input type="email" class="form-control border-dark" placeholder="Email" required>
</div>
</div> <!--form-row end-->
<div class="form-row">
<div class="col-md-6 mb-3">
<label for="numberOfPerson">Number of person</label>
<select class="form-control border-dark" aria-placeholder="Number of person" required>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
</select>
</div>
<div class="col-md-6 mb-3">
<label for="phoneNumber">Phone Number</label>
<input type="tel" class="form-control border-dark" placeholder="+1*********" required>
</div>
</div> <!--form-row end-->
<div class="form-row">
<div class="col-md-6 mb-3">
<label for="date">Date</label>
<input type="date" class="form-control border-dark" required>
</div>
<div class="col-md-6 mb-3">
<label for="time">Time</label>
<input type="time" class="form-control border-dark" required>
</div>
</div> <!--form-row end-->
<div class="form-row">
<div class="col-md-12 col-sm-12">
<label for="message">Message</label>
<textarea name="" class="form-control border-dark">Your messages</textarea>
</div>
</div> <!--form-row end-->
<div class="form-row justify-content-center py-3">
<div class="col-6 p-2">
<button type="submit" class="col-12 btn border-dark custom-btn">Submit</button>
</div>
</div>
</form>
</div>
</div> <!--row end-->
</div>
</section>
<!-- footer 4-->
<footer class="">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-12 text-center">
<hr class="pt-5 mt-5">
</div>
<div class="col-lg-4 col-md-12 text-center">
<img src="img/logo1.png" height="150" alt="Your choise logo">
</div>
<div class="col-lg-4 col-md-12 text-center">
<hr class="pt-5 mt-5">
</div>
</div> <!--row end-->
<div class="row justify-content-center">
<div class="col-md-8 col-sm-12px-2 py-3">
<div class="text-center py-3">
<h4>WEEKLY NEWSLETTER</h4>
</div>
<form action="#">
<div class="form-row">
<div class="col-md col-sm-12 p-2">
<input type="text" class="form-control border-dark" placeholder="Name">
</div>
<div class="col-md-7 col-sm-12 p-2">
<input type="email" class="form-control border-dark" placeholder="Email">
</div>
<div class="col-12 p-2">
<button type="submit" class="col-12 btn border-dark custom-btn">SUBSCRIBE</button>
</div>
</div>
</form>
</div>
</div><!--row end-->
<div class="row justify-content-center">
<div class="col-md-9 col-sm-10 px-2 py-3">
<div class="d-flex justify-content-between py-3 my-2">
<a href="www.twitter.com" class="icon-link"><i class="fab fa-twitter"></i></a>
<a href="www.pinterest.com" class="icon-link"><i class="fab fa-pinterest"></i></a>
<a href="www.instagram.com" class="icon-link"><i class="fab fa-instagram"></i></a>
<a href="www.facebook.com" class="icon-link"><i class="fab fa-facebook"></i></a>
</div>
</div>
</div> <!--row end-->
<div class="row">
<div class="col-md-4 col-sm-12 py-4 text-sm-center text-md-left">
<div class="flex-column">
<div class="py-2 p-1 m-2"><a href="index.html" class="footer-link-item">HOME</a></div>
<div class="py-2 p-1 m-2"><a href="menu.html" class="footer-link-item">MENU</a></div>
<div class="py-2 p-1 m-2"><a href="reservation.html" class="footer-link-item">RESERVATION</a></div>
<div class="py-2 p-1 m-2"><a href="about.html" class="footer-link-item">ABOUT US</a></div>
<div class="py-2 p-1 m-2"><a href="contact.html" class="footer-link-item">CONTACT US</a></div>
</div>
</div>
<div class="col-md-4 col-sm-12 py-4 text-sm-center text-md-left">
<div class="flex-column">
<div class="py-2 p-1 m-2">
<i class="fas fa-phone-volume fs-30"></i>
<a href="tel:+111 222 333"><span class="footer-link-item">+111 222 333</span></a>
</div>
<div class="py-2 p-1 m-2">
<i class="fas fa-envelope-open-text fs-30"></i>
<a href="mailto:yourchoice@gmail.com"><span class="footer-link-item"> yourchoice@gmail.com</span></a>
</div>
<div class="py-2 p-1 m-2">
<i class="fas fa-map-marker fs-30"></i>
<a href="https://www.google.com/maps/place/16%C2%B047'45.3%22N+96%C2%B008'27.1%22E/@16.7959167,96.1386724,17z/data=!3m1!4b1!4m5!3m4!1s0x0:0x0!8m2!3d16.7959051!4d96.1408497"><span class="footer-link-item">Pyi Road (Eastern Territory), Yangon (16°47'45.3 N 96°08'27.1 E)</span></a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-12 py-4 text-sm-center text-md-left">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3819.6130442316185!2d96.13867241486815!3d16.795916688435632!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x0!2zMTbCsDQ3JzQ1LjMiTiA5NsKwMDgnMjcuMSJF!5e0!3m2!1smy!2smm!4v1630051883135!5m2!1smy!2smm" width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div> <!--row end-->
</div> <!--container end-->
<div class="container-fluid bg-footer-dark text-white">
<div class="row">
<div class="col-12 text-center py-3 my-2">
<small>Copyright © 2021 Your Choice. All rights reserved.</small>
</div>
</div>
</div>
</footer> <!--footer end-->
<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.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script>
</body>
</html>