-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarter-page-order.html
380 lines (355 loc) · 12.3 KB
/
starter-page-order.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="max-age=604800" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Bootstrap-ecommerce by Vosidiy">
<title>UI KIT - Marketplace and Ecommerce html template</title>
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon">
<!-- jQuery -->
<script src="js/jquery-2.0.0.min.js" type="text/javascript"></script>
<!-- Bootstrap4 files-->
<script src="js/bootstrap.bundle.min.js" type="text/javascript"></script>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css"/>
<!-- Font awesome 5 -->
<link href="fonts/fontawesome/css/fontawesome-all.min.css" type="text/css" rel="stylesheet">
<!-- custom style -->
<link href="css/ui.css" rel="stylesheet" type="text/css"/>
<link href="css/responsive.css" rel="stylesheet" media="only screen and (max-width: 1200px)" />
<!-- custom javascript -->
<script src="js/script.js" type="text/javascript"></script>
<script type="text/javascript">
/// some script
// jquery ready start
$(document).ready(function() {
// jQuery code
});
// jquery end
</script>
</head>
<body>
<header class="section-header">
<nav class="navbar navbar-top navbar-expand-lg navbar-dark bg-secondary">
<div class="container">
<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">
<li class="nav-item active">
<a class="nav-link" href="http://bootstrap-ecommerce.com">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item"><a class="nav-link" href="html-components.html"> Documentation </a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown"> Dropdown </a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#"> Menu item 1</a></li>
<li><a class="dropdown-item" href="#"> Menu item 2 </a></li>
</ul>
</li>
<li class="nav-item"><a class="nav-link" href="http://bootstrap-ecommerce.com"> Download <i class="fa fa-download"></i></a></li>
</ul>
</div>
</div> <!-- container // -->
</nav>
<section class="header-main">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-3 col-sm-4">
<div class="brand-wrap">
<img class="logo" src="images/logo-dark.png">
<h2 class="logo-text">LOGO</h2>
</div> <!-- brand-wrap.// -->
</div>
<div class="col-lg-6 col-sm-8">
<form action="#" class="search-wrap">
<div class="input-group w-100">
<input type="text" class="form-control" style="width:55%;" placeholder="Search">
<select class="custom-select" name="category_name">
<option value="">All type</option><option value="codex">Special</option>
<option value="comments">Only best</option>
<option value="content">Latest</option>
</select>
<div class="input-group-append">
<button class="btn btn-primary" type="submit">
<i class="fa fa-search"></i>
</button>
</div>
</div>
</form> <!-- search-wrap .end// -->
</div> <!-- col.// -->
<div class="col-lg-3 col-sm-12">
<a href="#" class="widget-header float-md-right">
<div class="icontext">
<div class="icon-wrap"><i class="flip-h fa-lg fa fa-phone"></i></div>
<div class="text-wrap">
<small>Phone</small>
<div>+97150 2813773</div>
</div>
</div>
</a>
</div> <!-- col.// -->
</div> <!-- row.// -->
</div> <!-- container.// -->
</section> <!-- header-main .// -->
</header> <!-- section-header.// -->
<!-- ========================= SECTION CONTENT ========================= -->
<section class="section-content bg padding-y border-top">
<div class="container">
<div class="row">
<main class="col-sm-9">
<div class="card">
<table class="table table-hover shopping-cart-wrap">
<thead class="text-muted">
<tr>
<th scope="col">Product</th>
<th scope="col" width="120">Quantity</th>
<th scope="col" width="120">Price</th>
<th scope="col" class="text-right" width="200">Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<figure class="media">
<div class="img-wrap"><img src="images/items/1.jpg" class="img-thumbnail img-sm"></div>
<figcaption class="media-body">
<h6 class="title text-truncate">Product name goes here </h6>
<dl class="dlist-inline small">
<dt>Size: </dt>
<dd>XXL</dd>
</dl>
<dl class="dlist-inline small">
<dt>Color: </dt>
<dd>Orange color</dd>
</dl>
</figcaption>
</figure>
</td>
<td>
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
</td>
<td>
<div class="price-wrap">
<var class="price">USD 145</var>
<small class="text-muted">(USD5 each)</small>
</div> <!-- price-wrap .// -->
</td>
<td class="text-right">
<a data-original-title="Save to Wishlist" title="" href="" class="btn btn-outline-success" data-toggle="tooltip"> <i class="fa fa-heart"></i></a>
<a href="" class="btn btn-outline-danger"> × Remove</a>
</td>
</tr>
<tr>
<td>
<figure class="media">
<div class="img-wrap"><img src="images/items/2.jpg" class="img-thumbnail img-sm"></div>
<figcaption class="media-body">
<h6 class="title text-truncate">Product name goes here </h6>
<dl class="dlist-inline small">
<dt>Size: </dt>
<dd>XXL</dd>
</dl>
<dl class="dlist-inline small">
<dt>Color: </dt>
<dd>Orange color</dd>
</dl>
</figcaption>
</figure>
</td>
<td>
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
</td>
<td>
<div class="price-wrap">
<var class="price">USD 35</var>
<small class="text-muted">(USD10 each)</small>
</div> <!-- price-wrap .// -->
</td>
<td class="text-right">
<a data-original-title="Save to Wishlist" title="" href="" class="btn btn-outline-success" data-toggle="tooltip"> <i class="fa fa-heart"></i></a>
<a href="" class="btn btn-outline-danger btn-round"> × Remove</a>
</td>
</tr>
<tr>
<td>
<figure class="media">
<div class="img-wrap"><img src="images/items/3.jpg" class="img-thumbnail img-sm"></div>
<figcaption class="media-body">
<h6 class="title text-truncate">Product name goes here </h6>
<dl class="dlist-inline small">
<dt>Size: </dt>
<dd>XXL</dd>
</dl>
<dl class="dlist-inline small">
<dt>Color: </dt>
<dd>Orange color</dd>
</dl>
</figcaption>
</figure>
</td>
<td>
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
</td>
<td>
<div class="price-wrap">
<var class="price">USD 45</var>
<small class="text-muted">(USD15 each)</small>
</div> <!-- price-wrap .// -->
</td>
<td class="text-right">
<a data-original-title="Save to Wishlist" title="" href="" class="btn btn-outline-success" data-toggle="tooltip"> <i class="fa fa-heart"></i></a>
<a href="" class="btn btn-outline-danger btn-round"> × Remove</a>
</td>
</tr>
</tbody>
</table>
</div> <!-- card.// -->
</main> <!-- col.// -->
<aside class="col-sm-3">
<p class="alert alert-success">Add USD 5.00 of eligible items to your order to qualify for FREE Shipping. </p>
<dl class="dlist-align">
<dt>Total price: </dt>
<dd class="text-right">USD 568</dd>
</dl>
<dl class="dlist-align">
<dt>Discount:</dt>
<dd class="text-right">USD 658</dd>
</dl>
<dl class="dlist-align h4">
<dt>Total:</dt>
<dd class="text-right"><strong>USD 1,650</strong></dd>
</dl>
<hr>
<figure class="itemside mb-3">
<aside class="aside"><img src="images/icons/pay-visa.png"></aside>
<div class="text-wrap small text-muted">
Pay 84.78 AED ( Save 14.97 AED )
By using ADCB Cards
</div>
</figure>
<figure class="itemside mb-3">
<aside class="aside"> <img src="images/icons/pay-mastercard.png"> </aside>
<div class="text-wrap small text-muted">
Pay by MasterCard and Save 40%. <br>
Lorem ipsum dolor
</div>
</figure>
</aside> <!-- col.// -->
</div>
</div> <!-- container .// -->
</section>
<!-- ========================= SECTION CONTENT END// ========================= -->
<!-- ========================= SECTION ========================= -->
<section class="section-name bg-white padding-y">
<div class="container">
<header class="section-heading">
<h2 class="title-section">Section name</h2>
</header><!-- sect-heading -->
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div><!-- container // -->
</section>
<!-- ========================= SECTION END// ========================= -->
<!-- ========================= SECTION ========================= -->
<section class="section-name bg padding-y">
<div class="container">
<h4>Another section if needed</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div><!-- container // -->
</section>
<!-- ========================= SECTION END// ========================= -->
<!-- ========================= FOOTER ========================= -->
<footer class="section-footer bg-secondary">
<div class="container">
<section class="footer-top padding-top">
<div class="row">
<aside class="col-sm-3 col-md-3 white">
<h5 class="title">Customer Services</h5>
<ul class="list-unstyled">
<li> <a href="#">Help center</a></li>
<li> <a href="#">Money refund</a></li>
<li> <a href="#">Terms and Policy</a></li>
<li> <a href="#">Open dispute</a></li>
</ul>
</aside>
<aside class="col-sm-3 col-md-3 white">
<h5 class="title">My Account</h5>
<ul class="list-unstyled">
<li> <a href="#"> User Login </a></li>
<li> <a href="#"> User register </a></li>
<li> <a href="#"> Account Setting </a></li>
<li> <a href="#"> My Orders </a></li>
<li> <a href="#"> My Wishlist </a></li>
</ul>
</aside>
<aside class="col-sm-3 col-md-3 white">
<h5 class="title">About</h5>
<ul class="list-unstyled">
<li> <a href="#"> Our history </a></li>
<li> <a href="#"> How to buy </a></li>
<li> <a href="#"> Delivery and payment </a></li>
<li> <a href="#"> Advertice </a></li>
<li> <a href="#"> Partnership </a></li>
</ul>
</aside>
<aside class="col-sm-3">
<article class="white">
<h5 class="title">Contacts</h5>
<p>
<strong>Phone: </strong> +123456789 <br>
<strong>Fax:</strong> +123456789
</p>
<div class="btn-group white">
<a class="btn btn-facebook" title="Facebook" target="_blank" href="#"><i class="fab fa-facebook-f fa-fw"></i></a>
<a class="btn btn-instagram" title="Instagram" target="_blank" href="#"><i class="fab fa-instagram fa-fw"></i></a>
<a class="btn btn-youtube" title="Youtube" target="_blank" href="#"><i class="fab fa-youtube fa-fw"></i></a>
<a class="btn btn-twitter" title="Twitter" target="_blank" href="#"><i class="fab fa-twitter fa-fw"></i></a>
</div>
</article>
</aside>
</div> <!-- row.// -->
<br>
</section>
<section class="footer-bottom row border-top-white">
<div class="col-sm-6">
<p class="text-white-50"> Made with <3 <br> by Vosidiy M.</p>
</div>
<div class="col-sm-6 text-right">
<p class="text-sm-right text-white-50">
Copyright © 2018 <br>
<a href="http://bootstrap-ecommerce.com" class="text-white-50">Bootstrap-ecommerce UI kit</a>
</p>
</div>
</section> <!-- //footer-top -->
</div><!-- //container -->
</footer>
<!-- ========================= FOOTER END // ========================= -->
</body>
</html>