forked from sauravsaran99/lakmeindia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcart.html
49 lines (45 loc) · 1.91 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
<!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 page</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Noto+Sans+Display:wght@200;300;400&family=Rubik:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="cart.css">
</head>
<body>
<div class="fixed">
<section>
<div class="box1">
<p class="cart">CART</p>
<i class="fas fa-times" id="cross"></i>
</div>
<div class="box2">
<i class="fas fa-shopping-bag" id="cart-img"></i>
<p class="belowCart">Your bag is empty</p>
</div>
</section>
<div class="box3 notshow">
<!-- <div class="disable"> -->
<div class="h3class">
<h3>Payment Details</h3>
</div>
<div class="payment">
<div class="priceBox"><b>Bag Total</b></div>
<div class="priceBox totalPrice"><b></b></div>
<div class="priceBox">Savings</div>
<div class="priceBox savings"></div>
<div class="priceBox">Shipping Charge</div>
<div class="priceBox shipping"></div>
<div class="priceBox spend"><span>Spend $50 more and get free shipping!</span></div>
<div class="priceBox offer"><span>$180.00 Away to get free Dhaaga clutch product</span></div>
<div class="priceBox grid-but butwhite totalPrice2"></div>
<div class="priceBox grid-but butbrown">CHECKOUT></div>
</div>
</div>
</div>
<script src="cartscript.js"></script>
</body>
</html>