-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontact.html
349 lines (309 loc) · 14.8 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
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<title>Urban Tadka Restaurant | Contact Us</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue&family=Mogra&display=swap" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.15.0/css/mdb.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Restaurant">
<meta name="keywords" content="Urban Tadka Restaurant,indian,best,real taste">
<meta name="author" content="Suraj Mani">
<link rel="canonical" href="" />
<meta property="og:title" content="Urban Tadka Restaurant" />
<meta property="og:url" content="" />
<meta property="og:image" content="img/favicon.png" />
<meta property="og:description" content="Restaurant"/>
<meta property="og:locale" content="en_IN" />
<meta property="og:site_name" content="Urban Tadka Restaurant" />
<meta name="twitter:card" content="Restaurant" />
<meta name="twitter:title" content="Urban Tadka Restaurant" />
<meta name="twitter:description" content="Restaurant" />
<meta name="twitter:image" content="img/favicon.png">
<style>
body {
margin: 0;
padding: 0;
}
</style>
<link id="favicon" rel="shortcut icon" type="image/png" href="img/favicon.png" src="img/favicon.png">
</head>
<body class ="unique-color-dark">
<!-- Navbar -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark unique-color scrolling-navbar">
<div class="container">
<!-- Brand -->
<a class="navbar-brand " href="index.html">
<h3 class="font-weight-bold amber-text">Urban Tadka Restaurant</h3>
</a>
<!-- Collapse -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Links -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<!-- Left -->
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link font-weight-bold" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" href="about.html">About us</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" href="menu.html">Food Menu</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" href="gallery.html">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" href="tips.html">Healthy tips</a>
</li>
<li class="nav-item active">
<a class="nav-link font-weight-bold" href="contact.html">Contact Us
<span class="sr-only">(current)</span>
</a>
</li>
</ul>
<!-- Right -->
<ul class="navbar-nav nav-flex-icons">
<li class="nav-item">
<a href="https://www.facebook.com/" class="nav-link" target="_blank">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li class="nav-item">
<a href="https://www.instagram.com/" class="nav-link" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="nav-item">
<a href="https://whatsapp.com/" class="nav-link" target="_blank">
<i class="fab fa-whatsapp"></i>
</a>
</li>
<li class="nav-item">
<a href="https://twitter.com/" class="nav-link" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar -->
<br> <br>
<!-- =========== Start of Contact us ============ -->
<div class="container z-depth-1 my-5 px-0">
<!--Section: Content-->
<section class="my-md-5"
style="background-image: url('img/background/1.jpg'); background-size: cover; background-position: center center;">
<div class="rgba-black-strong rounded p-5">
<!-- Section heading -->
<h3 class="text-center font-weight-bold text-white mt-3 mb-5">Contact Us</h3>
<form id ="contactForm" name="contact-form">
<div class="row">
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-body px-4">
<!-- Name -->
<div class="md-form md-outline mt-0">
<input type="text" id="name" class="form-control validate" required="required" aria-required="true">
<label data-error="wrong" data-success="right" for="name">Your name</label>
</div>
<!-- Email -->
<div class="md-form md-outline">
<input type="email" id="email" class="form-control validate" required="required" aria-required="true">
<label data-error="wrong" data-success="right" for="email">Your email</label>
</div>
<!-- Subject -->
<div class="md-form md-outline mt-0">
<input type="text" id="sub" class="form-control validate" required="required" aria-required="true">
<label data-error="wrong" data-success="right" for="sub">Subject</label>
</div>
<!-- Message -->
<div class="md-form md-outline">
<textarea type="text" id="message" class="md-textarea form-control" rows="4" required="required" aria-required="true"></textarea>
<label data-error="wrong" data-success="right" for="message">Your message</label>
</div>
<button class="btn btn-primary btn-md btn-block ml-0 mb-0" type="submit" value="Submit">Send <i class="fas fa-paper-plane-o ml-1"></i></button>
</div>
</div>
</div>
<div class="col-md-5 offset-md-1 mt-md-4 mb-4 white-text">
<h5 class="font-weight-bold">Address</h5>
<p class="mb-0 blue-text"> Lovely Professional University</p>
<p class="mb-0 blue-text">BH-4 Food Court</p>
<p class="mb-0 blue-text">Jalandhar</p>
<p class="mb-4 pb-2 blue-text">Punjab, India</p>
<h5 class="font-weight-bold">Phone</h5>
<p>
<i class="fas fa-phone mr-3 "></i> <a href="tel:+91987654210">+91 98765 43210</a>
</p>
<h5 class="font-weight-bold">Email</h5>
<p><i class="fas fa-envelope mr-3"></i>
<a href="mailto:[email protected]/">[email protected]</a></p>
</div>
</div>
</form>
</div>
</section>
<!--Section: Content-->
<!-- Modal -->
<div class="modal fade" id="thanks" tabindex="-1" role="dialog" style="display: none;" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title blue-text text-center text-justify font-weight-bold" id="exampleModalLongTitle"><b>Thanks for being awesome!</b></h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body text-center text-justify">
<b>
We have received your message and would like to thank you for writing to us.One of our colleagues will get back in touch with you soon!
<br /> <br />
<i>Have a great day!</i>
</b>
<br /> <br />
<h4 class="amber-text text-center text-justify font-weight-bold">Urban Tadka Restaurant</h4>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary waves-effect waves-light" data-dismiss="modal">Close</button>
</div> </div> </div> </div>
<!-- Modal End-->
</div>
<!-- =========== End of Contact us ============ -->
<!-- Footer -->
<footer class="page-footer font-small unique-color pt-4" id="footer">
<!-- Footer Links -->
<div class="container text-center text-md-left">
<!-- Footer links -->
<div class="row text-center text-md-left mt-3 pb-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
<h2 class="text-uppercase text-left amber-text font-weight-bold">Urban Tadka Restaurant</h2>
<p class="text-left font-weight-normal" style="font-family: 'Comic Neue', cursive;">
The Urban Tadka restaurant is a classy and elegant Indian restaurant established in 2020. Authentic style décor incorporates classic feel – a place where traditional setting and delicious Indian food triumphs. Our culinary philosophy is deceptively simple. We celebrate the very best of Indian food. The Urban Tadka cuisine is an extraordinary combination of flavours, delicate seasonings, freshly ground spices, marinades, and complex tastes. We use only fresh and locally sourced ingredients. Our dishes will capture your hearts.
<!-- Social buttons -->
<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/" target="_blank" >
<i class="fab 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.instagram.com/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1" href="https://wa.me/" target="_blank">
<i class="fab fa-whatsapp"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1" href="https://twitter.com/" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn-floating btn-sm rgba-white-slight mx-1" href="https://www.linkedin.com/company/" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul></p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold">Useful links</h6>
<p style="font-family: 'Comic Neue', cursive;">
<a href="menu.html">Menu</a>
</p>
<p style="font-family: 'Comic Neue', cursive;">
<a href="about.html">About</a>
</p>
<p style="font-family: 'Comic Neue', cursive;">
<a href="contact.html">Contact</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<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</h6>
<p style="font-family: 'Comic Neue', cursive;">
<i class="fas fa-home mr-3"></i>
Lovely Professional University<br>
BH-4 Food Court<br>Jalandhar,Punjab</p>
<p>
<i class="fas fa-envelope mr-3"></i>
<a href="mailto:[email protected]/">[email protected]</a></p>
<p>
<i class="fas fa-phone mr-3"></i> <a href="tel:+91 98765 43210">+91 98765 43210</a>
</p>
<p>
<i class="fab fa-whatsapp mr-3"></i> <a href="https://wa.me/919876543210">+91 98765 43210</a>
</p>
</div>
<!-- Grid column -->
</div>
<hr>
<!--Copyright-->
<div class="footer-copyright text-center white-text unique-color py-3">
Copyright: © 2020
<strong> Urban Tadka restaurant</strong> |
All Rights Reserved.
</div>
<!--/.Copyright-->
</div>
</footer>
<!-- Footer -->
<!-- JQuery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.15.0/js/mdb.min.js"></script>
<script>new WOW().init();</script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.9.3/firebase-database.js"></script>
<script src="js/contact.js"></script>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.13.2/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.13.2/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.13.2/firebase-database.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyAK4bIuK-XZfMjlk7p-F6tI97ts8Y4J9XM",
authDomain: "urban-tadka.firebaseapp.com",
databaseURL: "https://urban-tadka.firebaseio.com",
projectId: "urban-tadka",
storageBucket: "urban-tadka.appspot.com",
messagingSenderId: "222821319835",
appId: "1:222821319835:web:b3233f6c940949badb723e",
measurementId: "G-V6L7P4NH2T"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
firebase.database();
</script>
</body>
</html>