-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddtoCart.html
More file actions
286 lines (258 loc) · 8.48 KB
/
addtoCart.html
File metadata and controls
286 lines (258 loc) · 8.48 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
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
<!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>Document</title>
<link rel="stylesheet" href="addtoCart.css">
</head>
<body>
<div class="main">
<div id="navbar">
<div id="top">
<div id="logo">
<img src="logo.jpg" alt="">
<h1 id="brandIcon" ><b>DERMSTORE</b></h1>
</div>
<div id="search">
<input type="search" name="search" id="searchbar" placeholder="Search for a product or brand...">
</div>
<div id="account"><h4 class="name">Dear Customer</h4></div>
<div id="cart">
<a href="#">Cart</a>
<button id="logoutbut">LOG OUT</button>
</div>
</div>
<ul id="dropdown">
<li><a href="#">Brands</a>
<ul class="brands">
<li><a href="#">0_9</a></li>
<li><a href="#">A</a></li>
<li><a href="#">B</a></li>
<li><a href="#">C</a></li>
<li><a href="#">D</a></li>
<li><a href="#">E</a></li>
<li><a href="#">F</a></li>
<li><a href="#">G</a></li>
<li><a href="#">H</a></li>
<li><a href="#">I</a></li>
<li><a href="#">J</a></li>
<li><a href="#">K</a></li>
<li><a href="#">L</a></li>
<li><a href="#">M</a></li>
<li><a href="#">N</a></li>
<li><a href="#">O</a></li>
<li><a href="#">P</a></li>
<li><a href="#">Q</a></li>
<li><a href="#">R</a></li>
<li><a href="#">S</a></li>
<li><a href="#">T</a></li>
<li><a href="#">U</a></li>
<li><a href="#">V</a></li>
<li><a href="#">W</a></li>
<li><a href="#">X</a></li>
<li><a href="#">Y</a></li>
<li><a href="#">Z</a></li>
</ul>
</li>
<li><a href="#">Holiday Shop</a></li>
<li><a href="#">Browse By</a></li>
<li><a href="#">Skin Care</a></li>
<li><a href="#">Makeup</a></li>
<li><a href="haircare.html">Hair Care</a></li>
<li><a href="#">Bath & body</a></li>
<li><a href="">Men</a></li>
<li><a href="#">Gifts & Sets</a></li>
<li><a href="#">BeautyFIX</a></li>
<li><a href="#">Sale</a></li>
<li><a href="#">New</a></li>
<li><a href="#">Skin 101</a></li>
</ul>
</div>
<!-- <div id="carosel">
<div id="offerbar">
<div id="shipping">
<img src="shipping.jpg" alt="">
<p>FREE US shipping over $50</p>
</div>
<div id="refferal">
<img src="newcustomer.jpg" alt="">
<p>New customers save 15% with code WELCOME15</p>
</div>
<div id="redeem">
<img src="redeem.jpg" alt="">
<p>Redeem Dermstore Rewards</p>
</div>
<div id="pay">
<img src="pay.jpg" alt="">
<p>Shop now, pay later with Arterpay</p>
</div>
</div> -->
<!-- <div id="cuoponbar">
<p>Use code EXPRESS for free 2-day shipping when you spend over $125 & guarantee delivery before Xmas. SHOP GIFTS</p>
</div> -->
</div>
</div>
<!-- content -->
<hr>
<div class="container">
<table >
<thead>
<tr>
<th>Items</th>
<th id="th1"></th>
<th>Price</th>
<th>Remove</th>
</tr>
</thead>
<tbody></tbody>
</table>
<hr>
<div id="total">
<p>Cart Subtotal:</p>
<h4 class="subtotal">$</h4>
<h4 id="subtotal">0</h4>
<h4 id="h43">.00</h4>
</div >
<div id="total">
<h5>Your Disscount : $ </h5>
<h5 id="h21">0.00</h5>
</div>
<hr>
<div id="total">
<input id="code" type="text" placeholder="Got a coupon? Enter it here:">
<button id="btn4">ADD</button>
</div>
<hr>
<div id="total">
<button id="btn1">CONTINUE SHOPPING</button>
<button id="btn2">🔒 CHECKOUT SECURELY NOW</button>
</div>
</div>
<!-- footer -->
<hr>
<div id="container">
<div class="footer1">
<div class="footer2">
<p>Sign up to our newsletters and receive the latest exclusive discounts and deals</p>
<button class="signmeupbutton">
SIGN ME UP
</button>
</div>
<div class=" footer3">
<p1 class="font">Connect with us</p>
<img class ="grey" src="https://img.icons8.com/ios/50/000000/facebook-new.png"/>
<img class ="grey" src="https://img.icons8.com/ios/50/000000/twitter-circled--v3.png"/>
<img class ="grey" src="https://img.icons8.com/ios-glyphs/50/000000/instagram-circle.png"/>
<img class ="grey" src="https://img.icons8.com/material-outlined/50/000000/youtube-play--v1.png"/>
<img class ="grey" src="https://img.icons8.com/ios/50/000000/pinterest--v1.png"/>
</div>
</div>
<div class="mainfooter4">
<div class="footer5">
<hr>
<table class="table1">
<thead>
<tr>
<th>Customer Service</th>
</tr>
</thead>
<tbody>
<tr>
<th>Help Center / FAQs</th>
</tr>
<tr>
<th> Returns</th>
</tr>
<tr>
<th> Shipping Information</th>
</tr>
<tr>
<th> Order Status</th>
</tr>
</tbody>
</table>
</div>
<div class="footer6">
<hr>
<table>
<thead>
<tr>
<th>MY Account</th>
</tr>
</thead>
<tbody>
<tr>
<th>Manage My Subscription</th>
</tr>
<tr>
<th> MY reward</th>
</tr>
<tr>
<th> My favourite</th>
</tr>
<tr>
<th> referals</th>
</tr>
<tr>
<th>Order History</th>
</tr>
</tbody>
</table>
</div>
<div class="footer7">
<hr>
<table>
<thead>
<tr>
<th>Company</th>
</tr>
</thead>
<tbody>
<tr>
<th>About Us </th>
</tr>
<tr>
<th> Press</th>
</tr>
<tr>
<th> What is Afterpay</th>
</tr>
</tbody>
</table>
</div>
<div class="footer8">
<hr>
<table>
<thead>
<tr>
<th>Privacy Plicy</th>
</tr>
</thead>
<tbody>
<tr>
<th>Terms & Condition</th>
</tr>
<tr>
<th> Modern Slavery Statement</th>
</tr>
<tr>
<th> Product REcall </th>
</tr>
<tr>
<th> Accessibility</th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<hr>
<div class="mainfooter9">
<img class="img" src="card.png" alt="loading">
</div>
<hr>
</body>
</html>
<script src="addtoCart.js"></script>