-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcart.html
104 lines (104 loc) · 3.12 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
<!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>Your Awesome Shoping Cart</title>
<link rel="stylesheet" href="css/cart.css" />
</head>
<body>
<!-- Navbar Section -->
<div id="navbar">
<span class="subscribe">SUBSCRIBE NOW</span>
<img
src="https://cdn.shopify.com/s/files/1/0052/7551/6995/files/FABBAG-LOGO_96ac9306-4c81-4ab8-8d2b-4e818eed7f76_2048x.png?v=1606482289"
alt="fabbag"
/>
<div class="search">
<i class="fa-solid fa-magnifying-glass"></i>
<a href="">
<i class="fa-solid fa-heart"></i>
</a>
<i class="fa-solid fa-user"></i>
<i class="fa-solid fa-cart-plus"></i>
</div>
</div>
<div id="container">
<div id="cart">
<h1 class="title">My Cart</h1>
<div id="inner-container">
<div id="products">
<div class="product"">
<h3 class="self-align-start">Product</h3>
<h3>QTY</h3>
<h3>Price</h3>
</div>
<!-- <div class="product">
<div class="desc">
<img src="img/Makeup-Reveal-1.gif" alt="Product description" />
<div class="title">The AweSummer May Fab Bag New item</div>
</div>
<div class="qty">
<input type="number" id="qty" min="0" />
</div>
<div class="price">Rs. 1900.00</div>
</div> -->
</div>
<div id="price">
<div class="total">
<h2>total price :</h2>
<h2>Rs. 9999999999</h2>
</div>
<button id="update-cart">Update Cart</button>
<button id="checkout">check out</button>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div id="information">
<h2>INFORMATION</h2>
<ul>
<li>About Us</li>
<li>Associated Brands</li>
<li>FAQ</li>
<li>Collaborate with Fab Bag</li>
<li>Contact Us</li>
<li>Returns & Refunds</li>
<li>Terms & Conditions</li>
<li>Privacy Policy</li>
</ul>
</div>
<div id="customer-care">
<h2>CUSTOMER CARE</h2>
<ul>
<li>
Call : <strong>022-6805-6010</strong><br />(Monday to Friday : 9 AM
- 7 PM).
</li>
<li>Mail : [email protected]</li>
</ul>
</div>
<div id="newsletter">
<h2>NEWSLETTER</h2>
<h5>Signup for the latest offers, updates and news</h5>
<div class="email">
<input type="text" placeholder="your email address" />
<button>SUBSCRIBE</button>
</div>
<h5>Don’t worry we don’t spam</h5>
</div>
</footer>
<div id="copyright">
<p>Copyright © 2021 fabbag.com All rights reserved.</p>
</div>
<!-- Footer Ends-->
</body>
</html>
<script
src="https://kit.fontawesome.com/54a5973b68.js"
crossorigin="anonymous"
></script>
<script src="js/cart.js"></script>