-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop_cart.html
204 lines (190 loc) · 8.65 KB
/
shop_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
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Selling Website</title>
<!-- Swiper css CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<!-- Custom Css -->
<link rel="stylesheet" href="style.css">
<!-- BoxIcon CDN -->
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
</head>
<body>
<!-- Top Header -->
<div class="top-header">
<div class="out-box">
<div class="inside-box">
<div class="col-1">
<span><i class='bx bxs-envelope'></i><a href="mailto:mratikrishna@gmail.com" style="text-decoration: none; color: white;">mratikrishna@gmail.com</a></span>
<span><i class='bx bxs-phone-call' ></i><a href="tel:+91 1234567890" style="text-decoration: none; color: white;">+91 1234567890</a></span>
<span><i class='bx bx-alarm' ></i>Sun - Fri (08 AM - 10 PM)</span>
</div>
<div class="col-2">
<a href="login.html"><i class='bx bx-arrow-to-right'></i>Login</a>
<a href="signup.html"><i class='bx bxs-user'></i>Register</a>
<span>Follow Us:</span>
<div class="social">
<i class='bx bxl-facebook-circle' ></i>
<i class='bx bxl-twitter' ></i>
<i class="bx bxl-instagram"></i>
<i class="bx bxl-linkedin"></i>
</div>
</div>
</div>
</div>
</div>
<!-- Navbar Section Start -->
<header class="header">
<div class="logo">
<img src="img/logo/logo.png" alt="">
</div>
<nav>
<div class="navbar">
<ul class="navLink">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#">Pages<i class='bx bxs-chevron-down'></i></a>
<ul class="drop-down">
<li><a href="inventory.html">Inventory</a></li>
<li><a href="price.html">Subscription</a></li>
<li><a href="calculator.html">Calculator</a></li>
<li><a href="price.html">Our Team</a></li>
<li><a href="reset.html">Reset Password</a></li>
<li><a href="blog-single.html">Blog Single</a></li>
<li><a href="inventory-single.html">Inventory Single</a></li>
<li><a href="shop-single.html">Shop Single</a></li>
<li><a href="shop_checkout.html">Shop Checkout</a></li>
<li><a href="services_single.html">Services Single</a></li>
</ul>
</li>
<li><a href="services.html">Services</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="others">
<i class='bx bx-search-alt-2' ></i>
<a href="shop_cart.html" class="active"><i class='bx bx-cart-download cart'></i></a>
<button class="addBtn"><i class='bx bx-plus-circle'></i>Add Listing</button>
<i class='bx bx-menu-alt-left' id="menuBtn" ></i>
</div>
</nav>
</header>
<!-- Shop-cart Page Section -->
<div class="inventory">
<h2>Shop Cart</h2>
<div class="link">
<a href="index.html">Home</a>
<span>>>></span>
<p>Shop Cart</p>
</div>
</div>
<!-- Shop-cart Section -->
<div class="shop_cart">
<table>
<tr class="topic">
<th>image</th>
<th>Product image</th>
<th>price</th>
<th>quantity</th>
<th>sub total</th>
</tr>
<tr class="text">
<td>
<a href="shop-single.html"><img src="img/Shop/car-parts-p4.png" alt=""></a>
</td>
<td><a href="shop_checkout.html" style="text-decoration: none; color: #646161;">Car Engine Parts</a></td>
<td>₹9600</td>
<td>
<input type="number" value="1">
</td>
<td class="subTot">
<td>₹9600</td>
</td>
</tr>
<tr class="text">
<td>
<img src="img/Shop/car-parts-p6.png" alt="">
</td>
<td>Car Engine Parts</td>
<td>₹9600</td>
<td>
<input type="number" value="1">
</td>
<td class="subTot">
<td>₹9600</td>
</td>
</tr>
<tr class="text">
<td>
<img src="img/Shop/car-parts-p7.png" alt="">
</td>
<td>Car Engine Parts</td>
<td>₹9600</td>
<td>
<input type="number" value="1">
</td>
<td class="subTot">
<td>₹9600</td>
</td>
</tr>
</table>
</div>
<!-- Footer Section Start -->
<div class="footer">
<div class="footer-row">
<div class="footer-col">
<img src="img/logo/logo-light.png" alt="">
<p class="text">Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla recusandae blanditiis aliquam.</p>
<span><i class="bx bx-phone"></i>+91 123 456 7890</span>
<span><i class="bx bx-location-plus"></i>15/B Main Road, Puri</span>
<span><i class="bx bx-envelope"></i>mratikrishna@gmail.com</span>
</div>
<div class="footer-col">
<h5>Quick Links</h5>
<a href="#"><i class="bx bx-chevron-right"></i>About Us</a>
<a href="#"><i class="bx bx-chevron-right"></i>Update News</a>
<a href="#"><i class="bx bx-chevron-right"></i>Testimonials</a>
<a href="#"><i class="bx bx-chevron-right"></i>Terms of Services</a>
<a href="#"><i class="bx bx-chevron-right"></i>Privacy Policy</a>
<a href="#"><i class="bx bx-chevron-right"></i>Our Dealers</a>
</div>
<div class="footer-col">
<h5>Support Center</h5>
<a href="#"><i class="bx bx-chevron-right"></i>FAQ's</a>
<a href="#"><i class="bx bx-chevron-right"></i>Affiliates</a>
<a href="#"><i class="bx bx-chevron-right"></i>Booking Tips</a>
<a href="#"><i class="bx bx-chevron-right"></i>Sell Vehicles</a>
<a href="#"><i class="bx bx-chevron-right"></i>Contact Us</a>
<a href="#"><i class="bx bx-chevron-right"></i>Sitmap</a>
</div>
<div class="footer-col">
<h5>Newsletter</h5>
<p class="text">Lorem ipsum dolor sit amet consectetur adipisicing.</p>
<input type="text" placeholder="Your Mail">
<button>Subscribe Now <i class="bx bxl-telegram"></i></button>
</div>
</div>
<div class="footer-bottom">
<p>© Copyright 2024 <span>MOTOB</span> All Right Reserved.</p>
<div class="social">
<i class="bx bxl-facebook"></i>
<i class="bx bxl-twitter"></i>
<i class="bx bxl-linkedin"></i>
<i class="bx bxl-youtube"></i>
</div>
</div>
<!-- Scroll Top Animation -->
<a href="#" class="scrollBtn">
<i class="bx bxs-chevrons-up"></i>
</a>
</div>
<!-- Swiper JS CDN -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<!-- Custom JS File -->
<script src="script.js"></script>
</body>
</html>