-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
178 lines (158 loc) · 5.51 KB
/
cart.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Cart</title>
<link rel="stylesheet" href="./css/cartCSS.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- link for cart icon -->
<link
href="https://unpkg.com/ionicons@4.5.10-0/dist/css/ionicons.min.css"
rel="stylesheet"
/>
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="image/images/Design 1/orangeFavicon.png">
</head>
<body>
<div id="progress">
<span id="progress-value">🠕</span>
</div>
<!--Script-->
<script src="./js/toTopJs.js"></script>
<header>
<nav id="mainNavbar">
<div class="logo">
<a href="Home.html"
><img src="image/logoorange.png" alt="" id="headerLogo"
/></a>
</div>
<label for="btn" class="icon">
<span class="fa fa-bars"></span>
</label>
<input type="checkbox" id="btn" class="checknone" />
<ul>
<li>
<label for="btn-1" class="show">MENU +</label>
<a href="#">MENU ⛛</a>
<input type="checkbox" id="btn-1" class="checknone" />
<ul>
<li><a href="menu.html">MAIN</a></li>
<li><a href="promotion.html">PROMOTION</a></li>
<li><a href="orsum.html">SUMMARY</a></li>
</ul>
</li>
<li>
<a href="Event.html">EVENTS </a>
</li>
<li>
<a href="review.html">REVIEWS </a>
</li>
<li>
<label for="btn-2" class="show">ABOUT US +</label>
<a href="#">ABOUT US ⛛</a>
<input type="checkbox" id="btn-2" class="checknone" />
<ul>
<li><a href="aboutus.html">HISTORY</a></li>
<li><a href="branch.html">BRANCHES</a></li>
<li><a href="FAQ.html">FAQ</a></li>
<li>
<label for="btn-3" class="show">FIND US </label>
<a href="#"
>FIND US
<span class="fa fa-plus"></span>
</a>
<input type="checkbox" id="btn-3" class="checknone" />
<ul>
<li><a href="contactus.html">CONTACT</a></li>
<li><a href="contactus_form.html">FEEDBACK</a></li>
<li><a href="Career.html">JOIN US</a></li>
</ul>
</li>
</ul>
</li>
<li class="cart">
<a href="cart.html">
CART<ion-icon name="cart"></ion-icon> <span>0</span>
</a>
</li>
</ul>
</nav>
</header>
<div id="content">
<!-- cart section -->
<div class="food-container">
<div class="food-header">
<h5 class="food-title">ITEM</h5>
<h5 class="unit">UNIT PRICE</h5>
<h5 class="quantity">QUANTITY</h5>
<h5 class="total">PRICE</h5>
</div>
<div class="itemList"></div>
</div>
<button class="checkout" onclick="writeToFile()">
<a href="./payment.html">Checkout</a>
</button>
</div>
<!-- footer section -->
<footer>
<div class="foot">
<div class="btmlogo">
<img src="./image/logoorange.png" class="btmlogo" />
</div>
<div class="parentf">
<h1 class="F">Our Store</h1>
<h1 class="F"><a href="menu.html" class="F">Menu</a></h1>
<h1 class="F"><a href="aboutus.html" class="F">About Us</a></h1>
<h1 class="F"><a href="promotion.html" class="F">Promotions</a></h1>
<h1 class="F"><a href="Event.html" class="F">Events</a></h1>
</div>
<div class="parentf2">
<h1 class="F"><a href="review.html" class="F">Reviews</a></h1>
<h1 class="F"><a href="contactus.html" class="F">Contact US</a></h1>
<h1 class="F"><a href="cart.html" class="F">Order Now</a></h1>
<h1 class="F"><a href="Career.html" class="F">Careers</a></h1>
</div>
<br />
<div class="SM">
<script
src="https://kit.fontawesome.com/52d2c78884.js"
crossorigin="anonymous"
></script>
<h1 class="F">Follow Us!</h1>
<i
class="fa-brands fa-facebook"
href="https://www.facebook.com/"
target="_blank"
></i
>
<i
class="fa-brands fa-instagram"
href="https://www.instagram.com/"
target="_blank"
></i
>
<i
class="fa-brands fa-whatsapp"
href="https://web.whatsapp.com/"
target="_blank"
></i>
<br />
<p>all rights not reserved</p>
</div>
</div>
</footer>
<!-- script for cart icon -->
<script src="https://unpkg.com/ionicons@4.5.10-0/dist/ionicons.js"></script>
<script src="./js/cartJS.js" type="text/javascript"></script>
<script src="./js/menu.js" type="text/javascript"></script>
</body>
</html>