-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenu.php
More file actions
160 lines (154 loc) · 9.19 KB
/
Menu.php
File metadata and controls
160 lines (154 loc) · 9.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="rooms.css">
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,600,600i,700,700i|Satisfy|Comic+Neue:300,300i,400,400i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<script>
(function() {
window.inputNumber = function(el) {
var min = el.attr('min') || false;
var max = el.attr('max') || false;
var els = {};
els.dec = el.prev();
els.inc = el.next();
el.each(function() {
init($(this));
});
function init(el) {
els.dec.on('click', decrement);
els.inc.on('click', increment);
function decrement() {
var value = el[0].value;
value--;
if (!min || value >= min) {
el[0].value = value;
}
}
function increment() {
var value = el[0].value;
value++;
if (!max || value <= max) {
el[0].value = value++;
}
}
}
}
})();
inputNumber($('.input-number'));
</script>
</head>
<body>
<!-- ======= Menu Section ======= -->
<form method="post" action="RestntPricing.php">
<section id="menu" class="menu">
<div class="container">
<div class="section-title">
<h2>Check our tasty <span>Menu</span></h2>
</div>
<div class="row">
<div class="col-lg-12 d-flex justify-content-center">
<ul id="menu-flters">
<li data-filter="*" class="filter-active">Show All</li>
<li data-filter=".filter-starters">Starters</li>
<li data-filter=".filter-salads">Salads</li>
<li data-filter=".filter-specialty">Specialty</li>
</ul>
</div>
</div>
<div class="row menu-container">
<div class="col-lg-6 menu-item filter-starters">
<div class="menu-content">
<a href="#">Lobster Bisque</a><span>$5.95</span><input name="food1" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
Lorem, deren, trataro, filede, nerada
</div>
</div>
<div class="col-lg-6 menu-item filter-specialty">
<div class="menu-content">
<a href="#">Bread barrel</a><span>$6.95</span><input name="food2" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
Lorem, deren, trataro, filede, nerada
</div>
</div>
<div class="col-lg-6 menu-item filter-starters">
<div class="menu-content">
<a href="#">Crab Cake</a><span>$7.95</span><input name="food3" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
A delicate crab cake served on a toasted roll with lettuce and tartar sauce
</div>
</div>
<div class="col-lg-6 menu-item filter-salads">
<div class="menu-content">
<a href="#">Caesar Selections</a><span>$8.95</span><input name="food4" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
Lorem, deren, trataro, filede, nerada
</div>
</div>
<div class="col-lg-6 menu-item filter-specialty">
<div class="menu-content">
<a href="#">Tuscan Grilled</a><span>$9.95</span><input name="food5" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
Grilled chicken with provolone, artichoke hearts, and roasted red pesto
</div>
</div>
<div class="col-lg-6 menu-item filter-starters">
<div class="menu-content">
<a href="#">Mozzarella Stick</a><span>$4.95</span><input name="food6" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
Lorem, deren, trataro, filede, nerada
</div>
</div>
<div class="col-lg-6 menu-item filter-salads">
<div class="menu-content">
<a href="#">Greek Salad</a><span>$9.95</span><input name="food7" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
Fresh spinach, crisp romaine, tomatoes, and Greek olives
</div>
</div>
<div class="col-lg-6 menu-item filter-salads">
<div class="menu-content">
<a href="#">Spinach Salad</a><span>$9.95</span><input name="food8" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
Fresh spinach with mushrooms, hard boiled egg, and warm bacon vinaigrette
</div>
</div>
<div class="col-lg-6 menu-item filter-specialty">
<div class="menu-content">
<a href="#">Lobster Roll</a><span>$12.95</span><input name="food9" style="width: 80px;vertical-align: top;text-align: center;outline: none;border: 1px solid #ccc;height: 40px; z-index: 10; " type="number" value="0" min="0" max="10">
</div>
<div class="menu-ingredients">
Plump lobster meat, mayo and crisp lettuce on a toasted bulky roll
</div>
</div>
</div>
<input type="submit" name="buynow" value="Buy now" style="text-align: center;border-radius: 50px;color: #fff;background: #ffb03b; margin: 0 auto 0 50%;">
</div>
</section><!-- End Menu Section -->
</form>
</body>
</html>