-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
496 lines (467 loc) · 19.2 KB
/
index.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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
<!DOCTYPE html>
<html lang="en"><!-- Basic -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Site Metas -->
<title>DMX Kitchen</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="author" content="">
<!-- Site Icons -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Site CSS -->
<link rel="stylesheet" href="css/style.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Start header -->
<header class="top-navbar">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="images/logo.png" alt="" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbars-rs-food" aria-controls="navbars-rs-food" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbars-rs-food">
<ul class="navbar-nav ml-auto">
<li class="nav-item active"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="menu.html">Menu</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="dropdown-a" data-toggle="dropdown">Pages</a>
<div class="dropdown-menu" aria-labelledby="dropdown-a">
<a class="dropdown-item" href="reservations.html">Reservations</a>
<a class="dropdown-item" href="stuff.html">Stuff</a>
<a class="dropdown-item" href="gallery.html">Gallery</a>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- End header -->
<!-- Start slides -->
<div id="slides" class="cover-slides">
<ul class="slides-container">
<li class="text-center">
<img src="images/slider-01.jpg" alt="">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="m-b-20"><strong>Welcome To <br> DMX Kitchen</strong></h1>
<p class="m-b-40">It's a waste of energy to think about what somebody else is doing and how they doing it.<br>I'ma just do what I do.</p>
<p><a class="btn btn-lg btn-circle btn-outline-new-white" href="reservations.html">Reservations</a></p>
</div>
</div>
</div>
</li>
<li class="text-center">
<img src="images/slider-02.jpg" alt="">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="m-b-20"><strong>Welcome To <br> DMX Kitchen</strong></h1>
<p class="m-b-40">It's a waste of energy to think about what somebody else is doing and how they doing it.<br>I'ma just do what I do.</p>
<p><a class="btn btn-lg btn-circle btn-outline-new-white" href="reservations.html">Reservations</a></p>
</div>
</div>
</div>
</li>
<li class="text-center">
<img src="images/slider-03.jpg" alt="">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="m-b-20"><strong>Welcome To <br> DMX Kitchen</strong></h1>
<p class="m-b-40">It's a waste of energy to think about what somebody else is doing and how they doing it.<br>I'ma just do what I do.</p>
<p><a class="btn btn-lg btn-circle btn-outline-new-white" href="reservations.html">Reservations</a></p>
</div>
</div>
</div>
</li>
</ul>
<div class="slides-navigation">
<a href="#" class="next"><i class="fa fa-angle-right" aria-hidden="true"></i></a>
<a href="#" class="prev"><i class="fa fa-angle-left" aria-hidden="true"></i></a>
</div>
</div>
<!-- End slides -->
<!-- Start About -->
<div class="about-section-box">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<img src="images/about-img.jpg" alt="" class="img-fluid">
</div>
<div class="col-lg-6 col-md-6 col-sm-12 text-center">
<div class="inner-column">
<h1>Welcome To <span>DMX Kitchen</span></h1>
<h4>Little Story</h4>
<p>DMX Kitchen traces its origin to the visionary mind of Earl Simmons, better known as DMX, the iconic rapper and entertainer. Inspired by his deep love for both music and food, DMX envisioned a unique dining concept that would merge the flavors of delectable cuisine with the energetic spirit of urban culture. With a passion for creating memorable experiences, DMX sought to bring together people from diverse backgrounds to celebrate their shared love for food and music. The result was the birth of DMX Kitchen, a vibrant restaurant that embodies his artistic vision, delivering an extraordinary fusion of culinary delights and an electrifying atmosphere.</p>
<a class="btn btn-lg btn-circle btn-outline-new-white" href="reservations.html">Reservations</a>
</div>
</div>
</div>
</div>
</div>
<!-- End About -->
<!-- Start QT -->
<div class="qt-box qt-background">
<div class="container">
<div class="row">
<div class="col-md-8 ml-auto mr-auto text-left">
<p class="lead ">
" Fuckin' wit a madman in a bad mood
It's like fuckin' wit a mad dog that wasn't fed food "
</p>
<span class="lead">DMX</span>
</div>
</div>
</div>
</div>
<!-- End QT -->
<!-- Start Menu -->
<div class="menu-box">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="heading-title text-center">
<h2>Special Menu</h2>
<p>Signature dishes created by Earl Simmons</p>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="special-menu text-center">
<div class="button-group filter-button-group">
<button class="active" data-filter="*">All</button>
<button data-filter=".drinks">Drinks</button>
<button data-filter=".lunch">Lunch</button>
<button data-filter=".dinner">Dinner</button>
</div>
</div>
</div>
</div>
<div class="row special-list">
<div class="col-lg-4 col-md-6 special-grid drinks">
<div class="gallery-single fix">
<img src="images/img-01.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>Rough & Ready Lemonade</h4>
<p>Refreshing lemonade with a hint of mint.</p>
<h5> $2.29</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 special-grid drinks">
<div class="gallery-single fix">
<img src="images/img-02.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>Xplosive Mango Margarita</h4>
<p> A tropical twist on the classic margarita, made with fresh mango puree and a dash of lime.</p>
<h5> $6.79</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 special-grid drinks">
<div class="gallery-single fix">
<img src="images/img-03.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>Rough Ryders Iced Tea</h4>
<p>Homemade sweet tea served over ice.</p>
<h5> $1.79</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 special-grid lunch">
<div class="gallery-single fix">
<img src="images/img-04.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>DM MEX Tacos</h4>
<p>Soft corn tortillas filled with your choice of grilled chicken, seasoned ground beef, or sautéed veggies. Topped with fresh salsa, shredded lettuce, and a drizzle of chipotle sauce. Served with a side of rice and beans.</p>
<h5> $8.79</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 special-grid lunch">
<div class="gallery-single fix">
<img src="images/img-05.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>Barkin' BBQ Burger</h4>
<p>Juicy beef patty topped with melted cheddar cheese, crispy bacon, and a smoky barbecue sauce. Served with lettuce, tomato, pickles, and onion rings.</p>
<h5> $9.79</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 special-grid lunch">
<div class="gallery-single fix">
<img src="images/img-06.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>Chicken Fajita Omelette</h4>
<p>Fluffy omelette filled with grilled chicken, sautéed bell peppers, onions, and melted cheddar cheese. Served with a side of salsa and choice of toast or tortillas.</p>
<h5> $7.29</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 special-grid dinner">
<div class="gallery-single fix">
<img src="images/img-07.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>Doggy-Style Grilled Salmon</h4>
<p>Grilled salmon fillet seasoned with herbs and served with steamed vegetables and wild rice.</p>
<h5> $18.79</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 special-grid dinner">
<div class="gallery-single fix">
<img src="images/img-08.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>Rough & Tough Ribs</h4>
<p>Slow-cooked baby back ribs glazed with a tangy barbecue sauce. Served with seasoned fries and coleslaw.</p>
<h5> $15.79</h5>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 special-grid dinner">
<div class="gallery-single fix">
<img src="images/img-09.jpg" class="img-fluid" alt="Image">
<div class="why-text">
<h4>Flesh of My Flesh T-bone Steak</h4>
<p>A mouthwatering 16-ounce T-bone steak, expertly seasoned, grilled to perfection, and served with garlic butter sautéed mushrooms. Accompanied by creamy mashed potatoes and a medley of roasted vegetables.</p>
<h5> $24.79</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Menu -->
<!-- Start Gallery -->
<div class="gallery-box">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="heading-title text-center">
<h2>Gallery</h2>
<p>DMX Launch Party pictures (Date: <i>TBD</i>)</p>
</div>
</div>
</div>
<div class="tz-gallery">
<div class="row">
<div class="col-sm-12 col-md-4 col-lg-4">
<a class="lightbox" href="images/gallery-img-01.jpg">
<img class="img-fluid" src="images/gallery-img-01.jpg" alt="Gallery Images">
</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<a class="lightbox" href="images/gallery-img-02.jpg">
<img class="img-fluid" src="images/gallery-img-02.jpg" alt="Gallery Images">
</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<a class="lightbox" href="images/gallery-img-03.jpg">
<img class="img-fluid" src="images/gallery-img-03.jpg" alt="Gallery Images">
</a>
</div>
<div class="col-sm-12 col-md-4 col-lg-4">
<a class="lightbox" href="images/gallery-img-04.jpg">
<img class="img-fluid" src="images/gallery-img-04.jpg" alt="Gallery Images">
</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<a class="lightbox" href="images/gallery-img-05.jpg">
<img class="img-fluid" src="images/gallery-img-05.jpg" alt="Gallery Images">
</a>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<a class="lightbox" href="images/gallery-img-06.jpg">
<img class="img-fluid" src="images/gallery-img-06.jpg" alt="Gallery Images">
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Gallery -->
<!-- Start Customer Reviews -->
<div class="customer-reviews-box">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="heading-title text-center">
<h2>Customer Reviews</h2>
<p>I had an incredible dining experience at DMX Kitchen. The Doggy-Style Grilled Salmon was a true standout. The salmon was perfectly grilled and seasoned, delivering a burst of flavors with every bite. The dish was beautifully presented and paired perfectly with the steamed vegetables and wild rice. DMX Kitchen exceeded my expectations, and I can't wait to return for another memorable meal. <i>-Katie's Mom</i></p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 mr-auto ml-auto text-center">
<div id="reviews" class="carousel slide" data-ride="carousel">
<div class="carousel-inner mt-4">
<div class="carousel-item text-center active">
<div class="img-box p-1 border rounded-circle m-auto">
<img class="d-block w-100 rounded-circle" src="images/profile-1.png" alt="">
</div>
<h5 class="mt-4 mb-0"><strong class="text-warning text-uppercase">Earl Simmons</strong></h5>
<h6 class="text-dark m-0">Rapper / Head Chef</h6>
<p class="m-0 pt-3">All dogs go to heaven. *barking noises*</p>
</div>
<div class="carousel-item text-center">
<div class="img-box p-1 border rounded-circle m-auto">
<img class="d-block w-100 rounded-circle" src="images/profile-2.png" alt="">
</div>
<h5 class="mt-4 mb-0"><strong class="text-warning text-uppercase">Adam J. Lacue</strong></h5>
<h6 class="text-dark m-0">Web Designer</h6>
<p class="m-0 pt-3">Is that felt?</p>
</div>
<div class="carousel-item text-center">
<div class="img-box p-1 border rounded-circle m-auto">
<img class="d-block w-100 rounded-circle" src="images/profile-3.png" alt="">
</div>
<h5 class="mt-4 mb-0"><strong class="text-warning text-uppercase">Stupid Gary</strong></h5>
<h6 class="text-dark m-0">Sous Chef</h6>
<p class="m-0 pt-3">stoopid</p>
</div>
<div class="carousel-item text-center">
<div class="img-box p-1 border rounded-circle m-auto">
<img class="d-block w-100 rounded-circle" src="images/profile-4.png" alt="">
</div>
<h5 class="mt-4 mb-0"><strong class="text-warning text-uppercase">Katie H.</strong></h5>
<h6 class="text-dark m-0">Boss Bitch</h6>
<p class="m-0 pt-3">Katie likes nothing, and hates the world. She thinks you should fuck off. xoxo</p>
</div>
</div>
<a class="carousel-control-prev" href="#reviews" role="button" data-slide="prev">
<i class="fa fa-angle-left" aria-hidden="true"></i>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#reviews" role="button" data-slide="next">
<i class="fa fa-angle-right" aria-hidden="true"></i>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- End Customer Reviews -->
<!-- Start Contact info -->
<div class="contact-imfo-box">
<div class="container">
<div class="row">
<div class="col-md-4">
<i class="fa fa-volume-control-phone"></i>
<div class="overflow-hidden">
<h4>Phone</h4>
<p class="lead">
+01 123-456-4590
</p>
</div>
</div>
<div class="col-md-4">
<i class="fa fa-envelope"></i>
<div class="overflow-hidden">
<h4>Email</h4>
<p class="lead">
</p>
</div>
</div>
<div class="col-md-4">
<i class="fa fa-map-marker"></i>
<div class="overflow-hidden">
<h4>Location</h4>
<p class="lead">
701 5th Ave, Patton, PA 16668
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Contact info -->
<!-- Start Footer -->
<footer class="footer-area bg-f">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6">
<h3>About Us</h3>
<p>I'm not the mixtape guy who's gonna put out a new one every month. I'm gonna allow my albums to marinate and resonate and whatever type of 'ates' they can do. I'm gonna let my music grow on them.</p>
</div>
<div class="col-lg-3 col-md-6">
<h3>Opening hours</h3>
<p><span class="text-color">Monday: </span>Closed</p>
<p><span class="text-color">Tue-Wed :</span> 9:Am - 10PM</p>
<p><span class="text-color">Thu-Fri :</span> 9:Am - 10PM</p>
<p><span class="text-color">Sat-Sun :</span> 5:PM - 10PM</p>
</div>
<div class="col-lg-3 col-md-6">
<h3>Contact information</h3>
<p class="lead">701 5th Ave, Patton, PA 16668</p>
<p class="lead"><a href="#">+01 2000 800 9999</a></p>
<p><a href="#"> [email protected]</a></p>
</div>
<div class="col-lg-3 col-md-6">
<h3>Subscribe</h3>
<div class="subscribe_form">
<form class="subscribe_form">
<input name="EMAIL" id="subs-email" class="form_input" placeholder="Email Address..." type="email">
<button type="submit" class="submit">SUBSCRIBE</button>
<div class="clearfix"></div>
</form>
</div>
<ul class="list-inline f-social">
<li class="list-inline-item"><a href="https://www.facebook.com/adam.lacue"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li class="list-inline-item"><a href="https://twitter.com/DMX">𝕏</a></li>
<li class="list-inline-item"><a href="https://www.instagram.com/white_snake12"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p class="company-name">All Rights Reserved. © 2023 <a href="#">DMX Kitchen</a> Design By :
<a href="https://www.facebook.com/adam.lacue">Adam J. Lacue</a></p>
</div>
</div>
</div>
</div>
</footer>
<!-- End Footer -->
<a href="#" id="back-to-top" title="Back to top" style="display: none;">↑</a>
<!-- ALL JS FILES -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- ALL PLUGINS -->
<script src="js/jquery.superslides.min.js"></script>
<script src="js/images-loded.min.js"></script>
<script src="js/isotope.min.js"></script>
<script src="js/baguetteBox.min.js"></script>
<script src="js/form-validator.min.js"></script>
<script src="js/contact-form-script.js"></script>
<script src="js/custom.js"></script>
</body>
</html>