-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfrock.html
More file actions
308 lines (288 loc) · 16.4 KB
/
Copy pathfrock.html
File metadata and controls
308 lines (288 loc) · 16.4 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
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<!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>OUR PRODUCTS | DesireCart</title>
<link rel="shortcut icon" href="images/cartlogo.png" type="image/x-icon">
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="js/bootstrap.bundle.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="bg-light">
<!-- info -->
<div class="container pt-2">
<div class="row text-center">
<div class="col-sm-4">
<i class="fa-solid fa-envelope"></i>
Example1234@gmail.com
</div>
<div class="col-sm-4">
<i class="fa-solid fa-phone"></i>+91 9876543210
</div>
<div class="col-sm-4">
<i class="fa-brands fa-facebook mx-2"></i>
<i class="fa-brands fa-twitter mx-2"></i>
<i class="fa-brands fa-instagram mx-2"></i>
<i class="fa-brands fa-youtube mx-2"></i>
</div>
</div>
<div class="row pt-4 text-center">
<div class="col-sm-3 fs-2">
Desire<b class="mycolor">Cart<i class="fa-solid fa-shopping-cart"></i></b>
</div>
<div class="col-sm-6">
<div class="input-group mb-3">
<div class="form-floating">
<input type="text" class="form-control" id="floatingInputGroup1"
placeholder="Search Items Here">
<label for="floatingInputGroup1">Search Items Here</label>
</div>
<span class="input-group-text mybg"><i class="fa-solid fa-search text-white"></i></span>
</div>
</div>
<div class="col-sm-3 fs-2">
<a href="order.html">
<i class="fa-solid fa-cart-plus mycolor"></i>
</a>
</div>
</div>
</div>
<!-- navbar start -->
<nav class="navbar navbar-expand-lg bg-dark mt-4 sticky-top">
<div class="container">
<a class="navbar-brand fs-4" href="index.html"><b class="mycolor">DESIRECART</b></a>
<button class="navbar-toggler text-white mybg" 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 mycolor "></span>
</button>
<div class="collapse navbar-collapse ms-5" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 ">
<li class="nav-item">
<a class="nav-link text-white" aria-current="page" href="index.html"><i
class="fa-solid fa-home"></i> Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link active dropdown-toggle text-white" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<i class="fa-brands fa-product-hunt"></i> PRODUCT
</a>
<ul class="dropdown-menu bg-dark">
<li><a class="dropdown-item text-white dd" href="mens-product.html">MEN'S</a></li>
<li><a class="dropdown-item text-white dd" href="womens-product.html">WOMEN'S</a></li>
<li><a class="dropdown-item text-white dd" href="kids-product.html">KID'S</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="order.html"><i class="fa-solid fa-shopping-cart"></i>
MY
ORDERS</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="profile.html"><i class="fa-solid fa-user"></i> MY
PROFILE</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="support.html"><i class="fa-solid fa-phone"></i>
CUSTOMER
SUPPORT</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="signup.html"><i class="fa-solid fa-user"></i>
SIGN-UP</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="#" data-bs-toggle="modal" data-bs-target="#signin"><i
class="fa-solid fa-key"></i> SIGN-IN</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- sign up modal -->
<div class="modal fade" id="signin" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog mt-5">
<div class="modal-content text-bg-secondary">
<div class="modal-header">
<h1 class="modal-title fs-5 fw-bold" id="exampleModalLabel">Sign-in Here</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<input type="email" name="" id="" class="form-control mb-4 mt-2"
placeholder="Enter Your Username...">
<input type="password" name="" id="" class="form-control mb-2"
placeholder="Enter Your Password...">
</div>
<button class="btn text-center mybg text-white mx-auto mb-3">LOGIN</button>
<div class="text-center mx-auto mb-4">Have Not Account yet? <a href="signup.html" class="text-white"
style="text-decoration: none;"><b>SIGNUP</b></a></div>
</div>
</div>
</div>
<!-- Mens Product -->
<div class="container-fluid">
<div class="row mt-3">
<div class="col-sm-3">
<div class="col-sm-12 mybg text-white text-center p-2">
<h1 class="fw-bold h2 pt-2">OUR PRODUCTS</h1>
</div>
<div class="row">
<div class="col-sm-12">
<div class="list-group">
<a href="top.html" type="button" class="list-group-item list-group-item-action">
Top
</a>
<a href="saree.html" type="button" class="list-group-item list-group-item-action">
Saree
</a>
<a href="frock.html" type="button" class="list-group-item list-group-item-action">
Frock
</a>
<a href="kurta.html" type="button" class="list-group-item list-group-item-action">
Kurta
</a>
<a href="jeans.html" type="button" class="list-group-item list-group-item-action">
Jeans
</a>
<a href="tshirt.html" type="button" class="list-group-item list-group-item-action">
T-Shirt
</a>
<a href="shirt.html" type="button" class="list-group-item list-group-item-action">
Shirt
</a>
<a href="all-product.html" type="button" class="list-group-item list-group-item-action">
View All Product's
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-9">
<div class="col-sm-12 mybg text-white text-center p-2">
<h1 class="fw-bold h2 pt-2">Girls Frock</h1>
</div>
<div class="row mt-5 ms-2">
<div class="col-sm-4">
<div class="card" style="width: 18rem;">
<img src="images/womens/img7.jpg" style="height: 300px;" class="card-img-top" alt="...">
<div class="card-body text-center">
<h5 class="card-title">Womens Frock</h5>
<p class="card-text">Women Purple, Orange Frock</p>
<span class="card-text"><b>SIZE: L PRICE: <span class="text-success">2099.0/-</span>
<del>6099/</del></b></span>
<a href="#" class="btn mybg text-white float-start rounded-0 mt-3"
style="font-size: 12px;">ADD TO
CART</a>
<a href="#" class="btn mybg text-white float-end rounded-0 mt-3"
style="font-size: 12px;">ORDER
NOW</a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card" style="width: 18rem;">
<img src="images/womens/img8.jpg" style="height: 300px;" class="card-img-top" alt="...">
<div class="card-body text-center">
<h5 class="card-title">Womens Frock</h5>
<p class="card-text">Women Red Frock</p>
<span class="card-text"><b>SIZE: L PRICE: <span class="text-success">1599.0/-</span>
<del>5900/</del></b></span>
<a href="#" class="btn mybg text-white float-start rounded-0 mt-3"
style="font-size: 12px;">ADD TO
CART</a>
<a href="#" class="btn mybg text-white float-end rounded-0 mt-3"
style="font-size: 12px;">ORDER
NOW</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- footer -->
<div class="container-fluid bg-dark text-white mt-3">
<div class="container">
<footer class="pt-5 py-1">
<div class="row">
<div class="col-6 col-md-3 mb-3">
<div class="fs-4">
Desire<b class="mycolor">Cart<i class="fa-solid fa-shopping-cart"></i></b>
</div>
<ul class="nav flex-column">
<li class="nav-item mb-2">Address: Lucknow Utter Pradesh 221469</li>
<li class="nav-item mb-2">Phone: +91 9876543210</li>
<li class="nav-item mb-2">Example1234@gmail.com</li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<h5>Information</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">About Us</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Checkout</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Contact</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3">
<h5>My Account</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">My Account</a>
</li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Contact</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-muted">Shopping Cart</a>
</li>
</ul>
</div>
<div class="col-md-4 offset-md-1 mb-3">
<form>
<h5>Join Our Newsletter Now</h5>
<p>Get E-mail updates about our latest shop and special offers.</p>
<div class="d-flex flex-column flex-sm-row w-100 gap-2">
<label for="newsletter1" class="visually-hidden">Email address</label>
<input id="newsletter1" type="text" class="form-control"
placeholder="Email address">
<button class="btn mybg text-white" type="button">Subscribe</button>
</div>
</form>
</div>
</div>
<div class="d-flex flex-column flex-sm-row justify-content-between py-4 my-4 border-top">
<p>© 2022 DESIRECART, Inc. All rights reserved.</p>
<ul class="list-unstyled d-flex">
<li class="ms-3"><a class="link-dark" href="#"><i
class="fa-brands fa-twitter mycolor"></i></a></li>
<li class="ms-3"><a class="link-dark" href="#"><i
class="fa-brands fa-instagram mycolor"></i></a>
</li>
<li class="ms-3"><a class="link-dark" href="#"><i
class="fa-brands fa-facebook mycolor"></i></a>
</li>
<li class="ms-3"><a class="link-dark" href="#"><i
class="fa-brands fa-youtube mycolor"></i></a>
</li>
<li class="ms-3"><a class="link-dark" href="#"><i
class="fa-brands fa-telegram mycolor"></i></a>
</li>
<li class="ms-3"><a class="link-dark" href="#"><i
class="fa-brands fa-whatsapp mycolor"></i></a>
</li>
</ul>
</div>
</footer>
</div>
</div>
<!-- FEEDBACK -->
<div id="fh">
<a href="feedback.html" style="text-decoration: none;"><span class="input-group mybg rounded-5 text-center"
style="width: 200px;">
<b class="text-white fs-4 ps-3">FEEDBACK</b>
<span class="input-group-text rounded-5 ms-2"> <i
class="fa-solid fa-comments fs-4 mycolor"></i></span>
</span>
</a>
</div>
</body>
</html>