-
Notifications
You must be signed in to change notification settings - Fork 1
/
cart.html
44 lines (44 loc) · 1.37 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
<!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>Cart</title>
<link rel="stylesheet" href="style/cart.css" />
</head>
<body>
<div class="cont">
<div class="details">
<img src="" class="img_cart" />
<div class="information">
<h4 id="product_name">One plus nord</h4>
<p id="price_product">3200</p>
<p>Free Shipping</p>
<p>Standard Delivery: Tomorrow</p>
<p>
*Delivery assurance is subject to our delivery locations staying
open as per govt. regulations
</p>
</div>
<div class="quantity">
<button id="minus">-</button>
<span id="quantity">1</span>
<button id="plus">+</button>
<br />
<button id="remove_product">Remove</button>
</div>
</div>
<div class="price_list">
<button>Sign In to Process</button>
<p>Price Details</p>
<p>
<span id="price_item">1 </span>items <span id="price_span">2356</span>
</p>
<p>Delivery charges Free</p>
<p>Amount payable <span id="pay_amount">1321</span></p>
</div>
</div>
</body>
</html>
<script src="script/cart.js"></script>