-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
144 lines (131 loc) · 5.31 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
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
<!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>Resell Stock Ireland Store</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section id="header">
<a href="index"><img src="img/rs-transparentweb.png" class="logo" alt=""></a>
<div>
<ul id="navbar">
<li><a href="index">Home</a></li>
<li><a href="shop">Shop</a></li>
<li><a href="about">About</a></li>
<li><a href="contact">Contact</a></li>
<a href="#" id="close"><img src="img/close.png" alt=""></a>
</ul>
</div>
<div id="mobile">
<img src="img/hamburger.png" alt="" id="bar">
</div>
</section>
<section id="aboutBanner" class="section-m1">
<h2>Let's Talk!</h2>
</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>Subtotal</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<a href=""><img src="img/cancel.png" alt=""></a>
<td><img src="img/products/DunkPanda/nike-dunk-low-panda-1.webp" alt="" class="productImg"></td>
<td>Dunk Low Panda</td>
<td>€200</td>
<td>€200</td>
</td>
</tr>
<tr>
<td>
<a href=""><img src="img/cancel.png" alt=""></a>
<td><img src="img/products/DunkGreyFog/nike-dunk-low-grey-fog-1.webp" alt="" class="productImg"></td>
<td>Dunk Grey Fog</td>
<td>€220</td>
<td>€220</td>
</td>
</tr>
<tr>
<td>
<a href=""><img src="img/cancel.png" alt=""></a>
<td><img src="img/products/YeezySlide/yeezy-slide-resin-1.webp" alt="" class="productImg"></td>
<td>Yeezy Slide Resin</td>
<td>€150</td>
<td>€150</td>
</td>
</tr>
</tbody>
</table>
</section>
<section id="cart-add" class="section-p1">
<div id="coupon">
<h3>Apply Coupon</h3>
<div>
<input type="text" placeholder="Enter Coupon">
<button class="normal">Apply</button>
</div>
</div>
<div id="subtotal">
<h3>Cart Total</h3>
<table>
<tr>
<td>Cart Subtotal</td>
<td>€570</td>
</tr>
<tr>
<td>Shipping</td>
<td>Free</td>
</tr>
<tr>
<td><strong>Total</strong></td>
<td><strong>€570</strong></td>
</tr>
</table>
<button class="normal">Checkout</button>
</div>
</section>
<footer class=""section-p1>
<div class="col">
<img class="logo" src="img/rs-transparentweb.png" alt="">
<h4>Contact</h4>
<p><strong>Email:</strong> [email protected]</p>
<div class="follow">
<h4>Follow us</h4>
<div class="icon">
<a href="https://www.instagram.com/resellstockireland/" target="_blank"><img src="/img/social/instagram.png" alt=""></a>
<a href="https://www.tiktok.com/@resellstockireland" target="_blank"><img src="/img/social/tik-tok.png" alt=""></a>
</div>
</div>
</div>
<div class="col about">
<h4>About</h4>
<a href="#">About Us</a>
<a href="#">Delivery Information</a>
<a href="#">Privacy Policy</a>
<a href="#">Terms & Conditions</a>
<a href="#">Contact Us</a>
<a href="#">Track My Order</a>
</div>
<div class="paymentInfo">
<p>Secured Payment Gateways</p>
<img class="cards" src="img/cards.png" alt="">
<img class="qr" src="img/RS-QR.png" alt="">
</div>
<div class="copyright">
<p>© 2023, Resell Stock Ireland</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>