-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathourservices.html
249 lines (236 loc) · 14.3 KB
/
ourservices.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Our Services</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<a class="navbar-brand title" href="./index.html"><img src="logo.png" alt="" height="40px" >Delight</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="./home.html"><i class="fa fa-home" aria-hidden="true"></i>Home </a>
</li>
<li class="nav-item ">
<a class="nav-link" href="aboutus.html"><i class="fa fa-info" aria-hidden="true"></i>
About Us </a>
</li>
<li class="nav-item">
<a class="nav-link" href="./team.html"><i class="fa fa-users" aria-hidden="true"></i>
Team</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#"><i class="fa fa-cutlery" aria-hidden="true"></i>
Company Services <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contactus.html"><i class="fa fa-address-card" aria-hidden="true"></i>
Contact Us</a>
</li>
</ul>
<span class="navbar-text ">
<button type="button" class="btn btn-warning text-white"><a href="#reserveModal" class="unstyled" style="text-decoration: none;" id="reserve">Reserve Table</a></button>
</span>
</div>
</nav>
<div class="modal fade" role="dialog" id="reserveModal">
<div class="modal-dialog modal-lg" role="content">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Reserve a Table</h4>
<button type="button" class="close" data-dismiss="modal">
×
</button>
</div>
<div class="modal-body">
<form action="">
<div class="form-group row">
<label for="number-of-guests" class="col-sm-3 col-form-label strong"
name="number-of-guests" id="number-of-guests"> No. of Guests:</label></dt>
<div class="col-sm-6">
<label for="1" class="strong">1 </label>
<input type="radio" name="guests" id="1" value="1">
<label for="2" class="strong"> 2</label>
<input type="radio" name="guests" id="2" value="2">
<label for="3" class="strong"> 3</label>
<input type="radio" name="guests" id="3" value="3">
<label for="4" class="strong"> 4</label>
<input type="radio" name="guests" id="4" value="4">
<label for="5" class="strong"> 5</label>
<input type="radio" name="guests" id="5" value="5">
<label for="6" class="strong"> 6</label>
<input type="radio" name="guests" id="6" value="6">
</div>
</div>
<div class="form-group row">
<label for="section" class="col-sm-3 col-form-label strong" name="section"
id="section">Section:</label>
<div class="col-sm-3 col-md-5 btn-group btn-group-toggle" data-toggle="buttons">
<button type="button" class="btn btn-success active">Non-smoking
<input type="radio" name="section" id="non-smoking" class="blog" autocomplete="off" checked>
</button>
<button type="button" class="btn btn-danger">Smoking
<input type="radio" name="section" id="smoking" class="blog" autocomplete="off">
</button>
</div>
</div>
<div class="form-group row">
<label for="date-time" class="col-md-3 col-form-label strong">Date and Time:</label>
<div class="col-4 col-md-5">
<input type="date" name="date" id="date" class="form-control" placeholder="date">
</div>
<div class="col-5 col-md-4">
<input type="time" name="time" id="time" class="form-control" placeholder="time">
</div>
</div>
<div class="form-row">
<div class="col-md-12">
<button class="btn btn-secondary offset-3" type="button" data-dismiss="modal">Cancel</button>
<button class="btn btn-primary" type="submit">Reserve</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-fluid" style="background-color:#DAA258;">
<div class="container">
<div class="row space">
<div class="col-lg-2 col-sm-12">
<img src="./logo.png" alt="" >
</div>
<div class="col-lg-10 col-sm-12">
<h1 class="display-4 title" style="padding-top:30px ;">Hotel Delight</h1>
<p class="lead ">We take inspiration from the World's best cuisines, and create a unique fusion experience. Our lipsmacking creations will tickle your culinary senses!</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row space">
<ol class="col-12 breadcrumb">
<li class="breadcrumb-item">
<a href="./index.html">Home</a>
</li>
<li class="breadcrumb-item active">
Our Services
</li>
</ol>
</div>
</div>
<div class="container">
<div>
<h3 class=" col-12 title">Our Services</h3>
</div>
<div class="row space ">
<div class="col">
<div id="mycarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<img class="d-block img-fluid"
src="./carousel/ambience.jpg" alt="ambience" width="90%">
<div class="carousel-caption d-none d-md-block">
<h2 class="mt-0">Awe-inspiring Ambience</h2>
<p>Our ambience is made up of perfectly adjusted lights that serve the purpose of both, utility and creating a certain mood. </p>
</div>
</div>
<div class="carousel-item ">
<img class="d-block img-fluid"
src="./carousel/delivery.jpg" alt="safedelivery">
<div class="carousel-caption d-none d-md-block">
<h2 class="mt-0">Safe Delivery</h2>
<p>We provide the most clean and hygienic delivery and take away options.</p>
</div>
</div>
<div class="carousel-item">
<img class="d-block img-fluid"
src="./carousel/b2.jpg" alt="weekend-grand-buffet" width="90%">
<div class="carousel-caption d-none d-md-block">
<h2 class="mt-0">Weekend Grand Buffet <span class="badge badge-danger">NEW</span></h2>
<p>Featuring mouthwatering combinations with a choice of five different milkshakes, six enticing appetizers, six main entrees and five choicest desserts. All for just $19.99 per person </p>
</div>
</div>
</div>
<ol class="carousel-indicators">
<li data-target="#mycarousel" data-slide-to="0" class="active"></li>
<li data-target="#mycarousel" data-slide-to="1"></li>
<li data-target="#mycarousel" data-slide-to="2"></li>
</ol>
<a class="carousel-control-prev" href="#mycarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#mycarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</div>
<div style="padding-top: 30px;">
<h3 class=" col-12 title">Our Motto</h3>
<p>Our restaurant, regardless of our fast food, casual dining or fine dining, offers some amount of various foodstuffs (might have varying degrees of quality) for a price you agree to pay, in trade for you taking the time to prepare, cook and serve the food for yourself at home.
<p>Our restaurant will also take this a step further and provide you with a sitting/dining area where you can partake your meal, and will offer a variety of servers, bussers, and cleaning staff to further limit what you have to do for yourself.</p>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="row space">
<div class="col-4 offset-1 col-sm-2">
<h5>Links</h5>
<ul class="list-unstyled">
<li><a href="home.html">Home</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="team.html">Our Team</a></li>
<li><a href="#">Our Services</a></li>
<li><a href="contactus.html">Contact Us</a></li>
</ul>
</div>
<div class="col-7 col-sm-5">
<h5>Our Address</h5>
<address>
8175, West Briarwood Ave.<br>
Metairie,<br>
LA-70001.<br>
<i class="fa fa-phone fa-lg"></i>: +852 1234 5678<br>
<i class="fa fa-fax fa-lg"></i>: +852 8765 4321<br>
<i class="fa fa-envelope fa-lg"></i>: <a href="mailto:[email protected]">hoteldelight.net</a>
</address>
</div>
<div class="col-12 col-sm-4 align-self-center">
<div class="text-center">
<h6>Connect with us!</h6><br>
|<a class="btn btn-social-icon btn-google" href="http://google.com/"><i class="fa fa-google-plus fa-lg"></i></a>|
<a class="btn btn-social-icon btn-facebook" href="http://www.facebook.com/profile.php?id="><i class="fa fa-facebook-official fa-lg" aria-hidden="true"></i>
</a>|
<a class="btn btn-social-icon btn-linkedin" href="http://www.linkedin.com/in/"><i class="fa fa-linkedin fa-lg"></i></a>|
<a class="btn btn-social-icon btn-twitter" href="http://twitter.com/"><i class="fa fa-twitter fa-lg"></i></a>|
<a class="btn btn-social-icon btn-google" href="mailto:[email protected]"><i class="fa fa-envelope fa-lg"></i></a>|
</div>
</div>
</div>
<div class="row space justify-content-center">
<div class="col-auto">
<p>© Copyright 2020 Hotel Delight</p>
</div>
</div>
</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/[email protected]/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>
<script src="https://use.fontawesome.com/f344344add.js"></script>
<script src="java.js"></script>
</body>
</html>