forked from HarshhT29/E-com-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
167 lines (155 loc) · 5.7 KB
/
cart.html
File metadata and controls
167 lines (155 loc) · 5.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/af8458b496.js"></script>
<title>E-Com</title>
</head>
<body>
<section id="header">
<a href="#"><img src="img/logo.png" class="logo" alt="Company Logo" /></a>
<div class="navbarContainer">
<ul id="navbar" class="hidden">
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a class="active" href="cart.html" id="cartSymbol"><i class="fa-solid fa-cart-plus"></i></a></li>
<a href="#" id="close"><i class="fa fa-times"></i></a>
</ul>
</div>
<div id="mobile">
<a href="cart.html"><i class="fa-solid fa-cart-plus"></i></a>
<i id="bar" class="fas fa-outdent"></i>
</div>
</section>
<section id="up-shop" class="about-header">
<h2>Find us</h2>
<p>Lorem ipsum dolor sit amet consectetur.</p>
</section>
<section id="cart" class="section-p1">
<table width="100%">
<thead>
<tr>
<td>Remove</td>
<td>Image</td>
<td>Product</td>
<td>Price</td>
<td>Quantity</td>
<td>Subtotal</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<i class="far fa-times-circle"><a href="#"></a></i>
</td>
<td><img src="img/products/f1.jpg" /></td>
<td>abc Shirt</td>
<td>₹200</td>
<td><input type="number" value="1" /></td>
<td>₹200</td>
</tr>
<tr>
<td>
<i class="far fa-times-circle"><a href="#"></a></i>
</td>
<td><img src="img/products/f2.jpg" /></td>
<td>abc Shirt</td>
<td>₹200</td>
<td><input type="number" value="1" /></td>
<td>₹200</td>
</tr>
<tr>
<td>
<i class="far fa-times-circle"><a href="#"></a></i>
</td>
<td><img src="img/products/f3.jpg" /></td>
<td>abc Shirt</td>
<td>₹200</td>
<td><input type="number" value="1" /></td>
<td>₹200</td>
</tr>
</tbody>
</table>
</section>
<section id="cartBottom" class="section-p1">
<div class="coupon">
<h2>Apply Coupon</h2>
<div>
<input type="text" placeholder="Enter Your Coupon" />
<button class="btn">Apply</button>
</div>
</div>
<div class="cartTotals">
<h2>Cart Totals</h2>
<table>
<tr>
<td>Cart Value</td>
<td>₹600</td>
</tr>
<tr>
<td>Shipping Charges</td>
<td>₹90</td>
</tr>
<tr>
<td><strong>Total</strong></td>
<td><strong>₹690</strong></td>
</tr>
</table>
<button class="btn">CheckOut</button>
</div>
</section>
<section id="footer" class="section-p1">
<div class="column">
<img src="img/logo.png" alt="logo" style="margin-bottom: 28px;" />
<h4>Contact</h4>
<p><Strong>Address:</Strong> Abc, Xyz, India</p>
<p><Strong>Phone:</Strong> +91 999xxxxx76</p>
<p><Strong>Hours:</Strong> 11:00 - 18:00, Mon-Fri</p>
<div class="follow">
<h4>Follow Us</h4>
<div class="icon">
<i class='fa fa-facebook-f'></i>
<i class='fa fa-twitter'></i>
<i class='fa fa-instagram'></i>
<i class='fa fa-youtube'></i>
</div>
</div>
</div>
<div class="column">
<h4>About</h4>
<a href="#">About Us</a>
<a href="#">Delivery Instruction</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms & Conditions</a>
<a href="#">Help</a>
</div>
<div class="column">
<h4>My Account</h4>
<a href="#">Sign In</a>
<a href="#">View Cart</a>
<a href="#">My Wishlist</a>
<a href="#">Track My Order</a>
<a href="#">Help</a>
</div>
<div class="column install">
<h4>Install App</h4>
<p>Download our app for Android and iPhone.</p>
<div class="d-logo">
<img src="img/pay/app.jpg" />
<img src="img/pay/play.jpg" />
</div>
<p>Secured Payment Gateways</p>
<img src="img/pay/pay.png" />
</div>
<div class="copywright">
<p>©2023, I made it 28/07</p>
</div>
</section>
<script src="script.js"></script>
</body>
</html>