-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
170 lines (139 loc) · 6.06 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
<!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">
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<link rel="icon" href="https://www.netmeds.com/assets/global/apple-touch-icon-48x48.png" />
<link rel="stylesheet" href="cart.css">
<title>Netmed.com: Cart</title>
</head>
<body>
<div id="container">
<div id="mainbox">
<a href="index.html">
<div class="mainImg">
<img src="https://www.netmeds.com/assets/gloryweb/images/home-logo-netmeds-new.svg">
</div>
</a>
<div id="searchBox">
<select id="sel">
<option value=""> Deliver to <span class="blue">110008</span>
</option>
<option class="val" value="Other"> Other
</option>
</select>
<input id="searchbar" type="text" name="search" placeholder="Search Medicines and Wellness Product." />
</div>
<div id="boxes">
<div class="b1"> <a href=""> <img class="icon"
src="https://www.netmeds.com/assets/gloryweb/images/icons/upload_rx.svg"> Upload</a>
</div>
<div class="b1">
<span id="numprod"></span>
<img class="icon" src=" https://www.netmeds.com/assets/gloryweb/images/icons/cart_icon.svg">
<a href="cart.html"> Cart
</div>
<div class="b1">
<img class="icon" src="https://www.netmeds.com/assets/gloryweb/images/icons/profile_icon.svg">
<a href="signup.html"> SignIn/SignUp
</a>
</div>
</div>
</div>
</div>
<div id="cart_body">
<h2 id="or">Order Summary</h2>
<div id="order_summary">
<div id="payment_offers">
<div class="carousel" data-flickity='{ "wrapAround": true, "autoPlay": 2000 , "imagesLoaded":true }'>
<img style="height: 120px; width: 100%;"
src="https://www.netmeds.com/images/cms/aw_rbslider/slides/1654098465_Home_banner2555.jpg"
title="Get Flat 4000 Paytm Cashback points on Netmeds"
alt="Get Flat 4000 Paytm Cashback points on Netmeds">
<div class="carousel-cell">
<img style="margin-left: 0px;height: 120px; width: 100%;"
src="https://www.netmeds.com/images/cms/aw_rbslider/slides/1654275901_Web_Home_Kareenasdhdh.jpg">
</div>
<div class="carousel-cell">
<img style="height: 120px; width: 100%;"
src="https://www.netmeds.com/images/cms/aw_rbslider/slides/1654017250_Home_bannergdfshd.jpg">
</div>
<div class="carousel-cell">
<img style=" height: 120px; width: 100%;"
src="https://www.netmeds.com/images/cms/aw_rbslider/slides/1654098984_Home_banner23566.jpg">
</div>
<div class="carousel-cell">
<img style=" height: 120px; width: 100%;"
src="https://www.netmeds.com/images/cms/aw_rbslider/slides/1631889258_Web_Home_Bannerfdgdg.jpg">
</div>
</div>
</div>
<div id="membership">
<h4>Become Netmeds First Member</h4>
<p>Join membership to save much more! Exclusive offers designed for you</p>
</div>
<div>
<div id="pro">
<div id="left">
<h2>PRODUCTS</h2>
</div>
<div id="right">
<a href="productpage.html">
<button style="color: white; background-color: teal; padding: 11px; border-radius: 15px; border: none; text-decoration: solid;">
Add More Items</button>
</a>
</div>
</div>
<div id="products">
</div>
</div>
<div id="payment">
<div id="coupon">
<h3>APPLY PROMO CODE</h3>
<input type="text" name="COUPON CODE" id="apply">
<button id="coupon_button">Apply</button>
<p>Get flat discount! Vouchers applicable in payment options.</p>
</div>
<div id="payment_details">
<h3>Payment Details</h3>
<div>
</div>
<div></div>
<div></div>
<div>
<h4>MRP Total</h4>
</div>
<div>
<h4 id="pt"></h4>
</div>
<div>
<h4>Coupan Discount</h4>
</div>
<div>
<h4 id="net"></h4>
</div>
<div>
<h2>Total Amount -</h2>
</div>
<div>
<h3 id="total"></h3>
</div>
<div></div>
<div></div>
<div>
<h8>Total Amount</h8><br>
<h4 id="total1"></h4>
</div>
<a href="orderrev.html"><button id="PRO">PROCEED</button></a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="cart.js">
</script>
<script src="https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js"></script>