-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
190 lines (180 loc) · 5.53 KB
/
cart.html
File metadata and controls
190 lines (180 loc) · 5.53 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
<!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>Cara Store - Online Shopping With Your Favourite Brands</title>
<link rel="stylesheet" href="assets/css/style.css" />
<link
rel="shortcut icon"
href="assets/img/fav-icon.png"
type="image/x-icon"
/>
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
/>
</head>
<body>
<!-- Header-Section -->
<header>
<a href="index.html"
><img src="assets/img/logo.webp" class="logo" alt="logo"
/></a>
<nav>
<ul id="navbar">
<i class="fas fa-times fa-lg" id="side-bar-close"></i>
<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 href="cart.html" class="cart-icon active-cart"
><i class="fas fa-shopping-bag fa-lg"></i
></a>
</li>
</ul>
<div class="mobile-menu">
<a href="cart.html"
><i class="fas fa-shopping-bag fa-lg active-cart"></i
></a>
<i class="fas fa-bars fa-lg" id="side-bar"></i>
</div>
</nav>
<div id="overlay"></div>
</header>
<!-- Page-Header-Section -->
<section id="page-header" class="about-header">
<h2>#Cart</h2>
<p>Add Your Coupon Code & Save Up to 70% Off.</p>
</section>
<!-- Cart-Details -->
<section class="section-p1 cart">
<table>
<thead>
<tr>
<th>REMOVE</th>
<th>IMAGE</th>
<th>PRODUCT</th>
<th>PRICE</th>
<th>QUANTITY</th>
<th>SUBTOTAL</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href="#"><i class="far fa-times-circle"></i></a>
</td>
<td>
<img src="assets/img/products/f1.jpg" alt="product-image" />
</td>
<td>Cartoon Astrounaut T-Shirts</td>
<td>$127</td>
<td><input type="number" value="4" /></td>
<td>$127</td>
</tr>
<tr>
<td>
<a href="#"><i class="far fa-times-circle"></i></a>
</td>
<td>
<img src="assets/img/products/f2.jpg" alt="product-image" />
</td>
<td>Asthetic T-Shirt</td>
<td>$157</td>
<td><input type="number" value="2" /></td>
<td>$157</td>
</tr>
<tr>
<td>
<a href="#"><i class="far fa-times-circle"></i></a>
</td>
<td>
<img src="assets/img/products/f3.jpg" alt="product-image" />
</td>
<td>New Lin Style T-Sirt</td>
<td>$99</td>
<td><input type="number" value="1" /></td>
<td>$99</td>
</tr>
</tbody>
</table>
</section>
<!-- Coupon-Details -->
<section class="section-p1 coupon-detail">
<div id="coupon">
<h3>Apply Coupon</h3>
<div>
<input type="text" placeholder="Enter Your Coupon" />
<button class="btn">Apply</button>
</div>
</div>
<div id="subtotal">
<h3>Cart Totals</h3>
<table>
<tr>
<td>Cart Subtotal</td>
<td>$456</td>
</tr>
<tr>
<td>Shipping</td>
<td>Free</td>
</tr>
<tr>
<td><strong>Total</strong></td>
<td><strong>$467</strong></td>
</tr>
</table>
<button class="btn">Proceed To Checkout</button>
</div>
</section>
<!-- Footer -->
<footer class="section-p1">
<div class="col-1">
<a href="index.html"
><img src="assets/img/logo.webp" alt="site-logo"
/></a>
<h4>Contact Us</h4>
<p><strong>Address: </strong>557 Welliton Road, Street 1</p>
<p><strong>Phone: </strong>+93 3353 856 / +01 5623 963</p>
<h3 class="follow">Follow Us</h3>
<div class="footer-icons">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
</div>
</div>
<div class="col-2">
<h4>About Us</h4>
<li><a href="#">About Us</a></li>
<li><a href="#">Delivery Information</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms & Condition</a></li>
<li><a href="#">Contact Us</a></li>
</div>
<div class="col-2">
<h4>My Account</h4>
<li><a href="#">Sign In</a></li>
<li><a href="#">View Cart</a></li>
<li><a href="#">My Wishlist</a></li>
<li><a href="#">Track My Order</a></li>
<li><a href="#">Help</a></li>
</div>
<div class="col-3">
<h4>Install Our App</h4>
<p>From App Store or Google Play</p>
<div class="app-img">
<img src="assets/img/pay/play.jpg" />
<img src="assets/img/pay/app.jpg" />
</div>
<p>Secured Payment Gateway</p>
<img class="payment-img" src="assets/img/pay/pay.png" />
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>