-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoodbasket.html
More file actions
160 lines (146 loc) · 5.75 KB
/
foodbasket.html
File metadata and controls
160 lines (146 loc) · 5.75 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>
<head>
<title>Qmservices</title>
<link rel="icon" href="images/pic03.png">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header" class="alt">
<h1> <link rel="icon" href="images/pic03.png"><a href="index.html">QMS</a></h1>
<nav id="nav">
<ul>
<li class="special">
<a href="#menu" class="menuToggle"><span>Menu</span></a>
<div id="menu">
<ul>
<li><a href="index.html"><span class="icon fa-home" aria-hidden="true"></span>Home</a></li>
<li><a href="Restuarant.html"><span class="icon fa-cutlery" aria-hidden="true"></span> Restuarants</a></li>
<li><a href="#"><span class="icon fa-shopping-basket" aria-hidden="true"></span> food basket</a></li>
<li><a href="register.html"><span class="icon fa-user" aria-hidden="true"></span> User</a></li>
</ul>
</div>
</li>
</ul>
</nav>
</header>
<!-- Main -->
<article id="main">
<header>
<h2>YOUR BASKET</h2>
<p>contains all that your heart has picked</p>
</header>
<section class="wrapper style5">
<div class="row">
<div class="9u 12u$(medium)">
<div class="inner">
<div class="9u$ 12u$(medium)">
<table class="alt">
<thead>
<tr>
<th>Food</th>
<th>Price</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="slug.html">yamorito</a></td>
<td>#200</td>
<td><div class="select-wrapper">
<select name="demo-category" id="demo-category">
<option value=""> </option>
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
</select></div></td>
<td>
<a href="#" class="button small">update</a>
</td>
</tr>
<tr>
<td><a href="slug.html">fried rice</a></td>
<td>#200</td>
<td><div class="select-wrapper">
<select name="demo-category" id="demo-category">
<option value=""> </option>
<option value="1">1</option>
<option value="1">2</option>
<option value="1">3</option>
<option value="1">4</option>
</select></div></td>
<td>
<a href="#" class="button small">update</a>
</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
</div>
</div>
</div>
<div class="3u$ 12u$(medium)">
<table>
<thead>
<tr>
<h4>CART SUMMARY</h4>
</tr>
</thead>
<tbody>
<tr>
<td>Sub total</td>
<td>29.99</td>
</tr>
<tr>
<td>delivery</td>
<td>5.01</td>
</tr>
<tr>
<td>Total</td>
<td>35.00</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="1"></td>
<td><a href="checkout.html" class="button special">Checkout</a></td>
</tr>
</tfoot>
</table>
</div>
</div>
</section>
</article>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li>
<li><a href="#" class="icon fa-google"><span class="label">google+</span></a></li>
<li><a href="#" class="icon fa-envelope-o"><span class="label">Email</span></a></li>
</ul>
<ul class="copyright">
<li> <a href="tandc.html">TERMS & CONDITIONS</a></li><li><a href="privacypolicy.html">PRIVACY POLICY</a></li>
</ul>
<ul class="copyright">
<li>© 2016 Quick Meal Services</li><br /><li>Design: <a href="http://haywhyde.carrd.co">DAVID</a></li>
</ul>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>
.............................................................