-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbasket.html
123 lines (119 loc) · 4.54 KB
/
basket.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
<!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>Big Bastek</title>
<link rel="stylesheet" href="basket.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class = "nav"></div>
<!-- <div></div>.--> <!-- this div for navbar -->
<!-- main div of basket cart -->
<div id="main_container">
<!-- counter for items -->
<div id="basket_0">
<h4>Your Basket<hr></h4>
</div>
<div id="basket_1">
<button id="btn" onclick="press()">
VIEW AVAILABLE PROMOS
</button><br><br>
</div>
<!-- Description -->
<div id="basket_2">
<!-- <div class="basket1"> -->
<!-- <p>ITEM DESCRIPTION</p> -->
<!-- </div> -->
<!-- <div class="basket2"> -->
<p>ITEM DESCRIPTION</p>
<p>PRICE</p>
<!-- <p>QUANTITY</p> -->
<p>DELETE</p>
</div>
<div id="itm">
<div id="avtar"></div>
</div>
<!-- </div> -->
</div>
<!-- <div id="basket_3"><p><a href=""> Fruits & Vegetables</a> 02 items: Rs. 62:00</p>
</div> -->
<!-- informations of the products with total price -->
<!-- <div id="basket_4">
<div class="basket01"><p>ITEM DESCRIPTION</p></div>
<div class="basket02">
<p>UNIT PRICE</p>
<p>QUANTITY</p>
<p>SUBTOTAL</p>
<p><button>REMOVE</button></p> -->
<!-- </div>
<div class="basket03"><p>SAVINGS</p></div>
</div>
<br><hr><br>
<!-- Buttons And Checkout Options -->
<!-- <div id="basket_5">
<div id="bas1">
<button id="btn1" onclick="press1()">EMPTY BASKET</button><br>
<button id="btn2" onclick="press2()">CONTINUE SHOPPING</button>
</div> -->
<!-- <div id="bas2">
<p><b>BB Royal Almond/Badam Californian, Extra Bold 100 gm + BB Royal Honey 500 gm</b>
<br><br>Combo: BB Royal Almond/Badam Californian, Extra Bold 100 gm...</p>
</div>
<div id="bas3">
<div id="dis_box">
<div id="display">
<div class="bas_0">
<div class="div1">
<p>Subtotal</p>
<p>Rs.62.00</p>
</div>
<div class="div2">
<p>Delivery Charges</p>
<p>**</p>
</div>
</div>
<div class="bas_1">
<div class="div3">
<p>TOTAL</p>
<p>Rs. 62.00</p>
</div>
</div>
</div>
<div class="vl"></div>
<div id="display1">
<div class="div4">
<p>You saved!</p>
<p>Rs. 17.38</p>
</div>
</div>
</div> -->
<!-- <div class="vl1">
<p>* For this order: Accepted food coupon is Rs.62.00</p>
</div> -->
<!-- Checkout And Goto the payment Page -->
<div id="total_price">
<!-- <p>TOTAL PRICE</p> -->
</div>
<div id="check_the_button">
<div id="checkout">
<button id="btn3">
CHECKOUT
</button>
</div>
<div id="actual">
<P style="margin-left: 150px;">** Actual delivery charges computed at checkout time</P>
</div>
</div>
<div id = "footer"></div>
<!-- </div> -->
<!-- </div> -->
<!-- </div> -->
</body>
</html>
<script src="./basket.js" type = "module">
</script>