forked from HarshikaAdarsh/Try-you
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
228 lines (196 loc) · 7.61 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
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="icon" type="image/png" href="img/icon.png">
<title>Try You</title>
</head>
<body>
<!--navbar created-->
<nav class="navbar navbar-expand-lg bg-transparent bg-body-tertiary mt-3">
<div class="container">
<img src="img/logo1.png" height="28px">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class=" navbar-collapse collapse" id="navbarSupportedContent">
<ul class="navbar-nav" style="position: absolute;left: 1000px;">
<li class="nav-item">
<a class="nav-link a" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="shop.html">Shop</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<li class="nav-item ">
<a class="nav-link" href="#"><span class="material-symbols-outlined py-0">
<i class="material-icons">
search
</i>
</span></a>
</li>
<li class="nav-item ">
<a class="nav-link active" href="cart.html"><span class="material-symbols-outlined py-0">
<i class="material-icons">
shopping_cart
</i>
</span></a>
</li>
</div>
</div>
</nav>
</nav>
<section id="cart" class="pt-5 mt-5 ">
<div class="container">
<h2 class="font-weight-bold pt-5 "> Shopping Cart</h2>
<hr>
</div>
</section>
<section id="cart-container" class="container my-5">
<table width="100%">
<thead>
<tr>
<td> Remove</td>
<td>Image</td>
<td> Product</td>
<td> price</td>
<td> Quantity
</td>
<td> Total</td>
</tr>
</thead>
<tbody><tr>
<td><a href="#"><i class="material-icons">delete</i></a></td>
<td><img src= "img/products/p1.jpg" style="margin:5px;"></td>
<td><h5>Handbag Fringilla</h5></td>
<td><h5> $65</h5></td>
<td><input class="w-25 p-lg-2" value="1" type="number"></td>
<td><h5>$130</h5></td></tr>
<tr>
<td><a href="#"><i class="material-icons">delete</i></a></td>
<td><img src= "img/products/p2.jpg" style="margin:5px;"></td>
<td><h5>Handbag Fringilla</h5></td>
<td><h5> $65</h5></td>
<td><input class="w-25 p-lg-2" value="1" type="number"></td>
<td><h5>$130</h5></td></tr>
<tr>
<td><a href="#"><i class="material-icons">delete</i></a></td>
<td><img src= "img/products/p3.jpg" style="margin:5px;"></td>
<td><h5>Handbag Fringilla</h5></td>
<td><h5> $65</h5></td>
<td><input class="w-25 p-lg-2" value="1" type="number"></td>
<td><h5>$130</h5></td></tr>
</tbody>
</table>
</section>
<section id="cart-bottom" class="container">
<div class="row">
<div class="coupon col-lg-6 col-md-6 col-12 mb-5 ">
<h5>COUPON</h5>
<p>Enter your coupon code if you have one</p>
<input type="text" placeholder="Coupon code">
<button type="button" class="btn btn-dark">Apply Coupon</button>
</div>
<div class="total col-lg-6 col-md-6 col-12 mb-5">
<h5>CART TOTAL</h5>
<div class="d-flex justify-content-between">
<h6>Subtotal</h6>
<P>$215</P>
</div>
<div class="d-flex justify-content-between">
<h6>Shipping</h6>
<P>$215</P>
</div>
<hr class="second-hr">
<div class="d-flex justify-content-between">
<h6>Total</h6>
<P>$215</P>
</div>
<button type="button" class="btn btn-dark">PROCEED</button>
</div>
</div>
</section>
<section id="newsletter" style="padding: 40px 80px; margin: 50px 0px;" >
<div class="newstext">
<h4>Sign up for newsletter</h4>
<p>Get email updates about our latest arrivals and <span>special offers.</span></p>
</div>
<form class="row g-3" style="margin-top:12px;">
<div class="col-auto">
<label for="emailid" class="visually-hidden">Password</label>
<input type="email" class="form-control" id="inputPassword2" placeholder="[email protected]">
</div>
<div class="col-auto">
<button type="button" class="btn btn-light">Sign up</button>
</div>
</form>
</section>
<footer>
<div class="row container-fluid" style="padding-top:40px;">
<div class="col">
<img src="img/logo1.png" style="height:28px; width: 35%; margin-bottom: 9px;">
<h4>Contact</h4>
<p><strong>Address :</strong> 7607 Rubie Valley, Eulahhaven, </p><p>California</p>
<p><strong>Contact no. :</strong> +975753-5220 </p>
<p><strong>Hours :</strong> 10:00 to 18:00 , Mon to Sat</p>
<div class="follow">
<h4>Follow us</h4>
<div class="icon">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"> <i class="fa fa-twitter"></i></a>
<a href="#"> <i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-pinterest"></i></a>
<a href="#"> <i class="fa fa-youtube"></i></a>
</div>
</div>
</div>
<div class="col">
<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>
</div>
<div class="col">
<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="col">
<h4>Install App</h4>
<p>From App Store or Google Play</p>
<div class="row">
<img src="img/pay/app.jpg" >
<img src="img/pay/play.jpg">
</div>
<br>
<p>Secured Payment Gateways</p>
<img src="img/pay/pay.png">
</div>
</div>
</footer>
<div class="copyright">
<p>© 2023 www.tryyou.com - All Rights Reserved</p>
</div>
<script src="script.js"></script>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
</body>
</html>