-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathorder-cart.html
More file actions
345 lines (318 loc) · 14.7 KB
/
order-cart.html
File metadata and controls
345 lines (318 loc) · 14.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Order - Stellar Coffee</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/logo/logo.png" rel="icon">
<link href="assets/img/logo/logo.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/animate.css/animate.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.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">
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-cente header-scrolled">
<div class="container-fluid container-xl d-flex align-items-center justify-content-lg-between">
<a href="index.html">
<img src="/assets/img/logo/logo-wide-transparent.png" alt="logo-stellar-coffee" style="width: 180px;">
</a>
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto" href="index.html">Home</a></li>
<li><a class="nav-link scrollto" href="index.html#menu">Menu</a></li>
<li><a class="nav-link scrollto" href="index.html#specials">Specials</a></li>
<li><a class="nav-link scrollto" href="index.html#events">Events</a></li>
<li><a class="nav-link scrollto" href="index.html#leaderboard">Leaderboard</a></li>
</ul>
<i class="bi mobile-nav-toggle bi-list"></i>
</nav><!-- .navbar -->
<div class="button d-flex" id='navbar-button'>
</div>
</div>
</header><!-- End Header -->
<main id="main">
<section class="breadcrumbs">
<div class="container">
<div class="row page-title">
<h1>Menu</h1>
<h2>Order Now</h2>
<div class="discount align-items-center">
<ol>
<li><a href="index.html">Home</a></li>
<li>Order Now</li>
</ol>
</div>
</div>
</div>
</section>
<section id="menu" class="menu" style="padding-top: 50px; padding-bottom: 50px;">
<div class="container">
<button class="collapsible collapse-order">Coffee</button>
<div class="content">
<div class="d-flex justify-content-center row">
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/espresso.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Espresso</h5>
<p class="text-justify para mb-2 mt-2">Espresso beans</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="1">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp16.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/americano.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Americano</h5>
<p class="text-justify para mb-2 mt-2">An espresso shot added by hot water</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="2">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp24.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/cappucino.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Cappucino</h5>
<p class="text-justify para mb-2 mt-2">Double shot espresso, steamed milk, and steamed milk foam on top</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="3">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp25.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-5 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/vanilla-latte.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Vanilla Latte</h5>
<p class="text-justify para mb-2 mt-2">Rich, full-bodied espresso blended with creamy steamed milk and vanilla syrup</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="4">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp27.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-5 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/cafe-latte.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Cafe Latte</h5>
<p class="text-justify para mb-2 mt-2">Espresso with milk</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="5">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp25.000</p>
</button>
</div>
</div>
</div>
</div>
<button class="collapsible collapse-order">Non-Coffee</button>
<div class="content">
<div class="d-flex justify-content-center row">
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/lemon-tea.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Lemon Tea</h5>
<p class="text-justify para mb-2 mt-2">Lemon Tea is a tea where lemon juice is added in black tea</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="6">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp17.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/lychee-tea.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Lychee Tea</h5>
<p class="text-justify para mb-2 mt-2">Black tea which has been scented with lychee peels</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="7">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp20.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/taro-latte.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Taro Latte</h5>
<p class="text-justify para mb-2 mt-2">Latte which made with taro</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="8">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp20.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-5 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/matcha-latte.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Matcha Latte</h5>
<p class="text-justify para mb-2 mt-2">Tea-based beverage combining vivid green matcha tea powder and milk</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="9">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp25.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-5 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/chocolate-latte.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Chocolate Latte</h5>
<p class="text-justify para mb-2 mt-2">Espresso with milk</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="10">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp25.000</p>
</button>
</div>
</div>
</div>
</div>
<button class="collapsible collapse-order">Food</button>
<div class="content">
<div class="d-flex justify-content-center row">
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/french-fries.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">French Fries</h5>
<p class="text-justify para mb-2 mt-2">A thin strip of deep-fried potato</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="11">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp17.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/potato-wedges.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Potato Wedges</h5>
<p class="text-justify para mb-2 mt-2">Irregular wedge-shaped slices of potato that are either baked</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="12">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp20.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-1 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/croissant.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Croissant</h5>
<p class="text-justify para mb-2 mt-2">Crescent shaped roll made with yeast-risen dough</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="13">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp25.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-5 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/cheese-burger.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Cheese Burger</h5>
<p class="text-justify para mb-2 mt-2">Burger that contained cheese</p>
<button class="mt-2 btn btn-warning btn-cart" type="button" data-menuid="14">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp45.000</p>
</button>
</div>
</div>
<div class="col-md-3 mt-5 mx-3">
<img class="img-fluid img-responsive rounded product-image" src="assets/img/menu/deluxe-burger.jpg">
<div class="text-center menu-cart">
<h5 class="mt-2 mb-0">Deluxe Burger</h5>
<p class="text-justify para mb-2 mt-2">The burger is topped, right before serving with a raw onion slice, a slice of tomato, pickles and iceberg lettuce</p>
<button class="mt-2 btn btn-warning btn-cart mb-5" type="button" data-menuid="15">
<i style="color: white;" class="fa fa-shopping-cart"></i>
<p>Rp50.000</p>
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="cart-feature" class="cart-feature">
<div class="container">
<div class="row cart-header" style="margin-bottom: 10px;">
<h2 class="text-center cart-header">
<i style="color: white;" class="fa fa-shopping-cart"></i> <span style="padding-left: 10px;">Cart</span>
</h2>
</div>
<div class="col-md-8 offset-md-2 horizontal-cart-starter" style="margin-top: 20px;margin-bottom: 30px;">
<hr>
</div>
<div class="row container-cart-item">
<div class="col-md-8 offset-md-2 horizontal-cart-divider" style="margin-top: 0px;">
<hr>
</div>
<div class="d-flex justify-content-between col-md-8 offset-md-2 quantity-all-items">
<h5>Quantity : </h5>
<p>0</p>
</div>
<div class="d-flex justify-content-between col-md-8 offset-md-2 semi-total">
<h5>Total : </h5>
<p>Rp0</p>
</div>
<div class="d-flex justify-content-between col-md-8 offset-md-2 discount-invoice">
<h5>Discount : </h5>
<p>-Rp0</p>
</div>
<div class="col-md-8 offset-md-2 horizontal-cart-divider">
<hr>
</div>
<div class="d-flex justify-content-between col-md-8 offset-md-2 grand-total">
<h5>Grand Total : </h5>
<p>Rp0</p>
</div>
</div>
<div class="col-md-8 offset-md-2 horizontal-cart-divider">
<hr>
</div>
<div class="row input-coupon">
<div class="col-md-5 offset-3">
<input type="text" name="coupon" id="coupon" placeholder="Enter Coupon">
</div>
<div class="col-md-1 container-apply-button">
<div class="d-flex justify-content-center align-content-center">
<a class="book-a-table-btn apply-btn" style="margin: 10px 0;">Apply</a>
</div>
</div>
</div>
<div class="row cart-btn">
<div class="col-md-3 offset-md-3">
<a class="d-flex align-content-center justify-content-center book-a-table-btn clear-cart-btn">Clear Cart</a>
</div>
<div class="col-md-3">
<a class="d-flex align-content-center justify-content-center book-a-table-btn checkout-btn">Checkout</a>
</div>
</div>
</div>
</section>
</main>
<!-- End #main -->
<div id="preloader"></div>
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/cart.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/navbar.js"></script>
</body>
</html>