-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
333 lines (285 loc) · 11.8 KB
/
index.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
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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
<!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>Ecommerce Website</title>
<!-- font awesome -->
<script src="https://kit.fontawesome.com/abd17d1dba.js" crossorigin="anonymous"></script>
<!-- bootstrap css -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
<!-- style css -->
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<script src="src/Data.js"></script>
<script src="src/main.js"></script>
<body>
<!-- navigation bar -->
<header>
<nav class="navbar navbar-expand-lg navbar-light fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><span>T</span>reasure</a>
<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="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" 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="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<button class="btn btn-success text-dark" type="submit"> <a href="sign-in.html">Sign In</a></button>
<a href="cart.html">
<div class="cart">
<i class="bi bi-cart2"></i>
<div id="cartAmount" class="cartAmount">0</div>
</div>
</a>
</div>
</div>
</nav>
</header>
<!-- carousel -->
<div id="carouselExampleFade" class="carousel carousel-dark slide carousel-fade mt-5 " data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/img/slider1.jpg" class=" col-lg-12 col-md-12 col-12" alt="...">
</div>
<div class="carousel-item">
<img src="/img/slider2.jpg" class=" col-lg-12 col-md-12 col-12" alt="...">
</div>
<div class="carousel-item">
<img src="/img/slider3.jpg" class=" col-lg-12 col-md-12 col-12" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleFade" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
<!-- <span class="visually-hidden">Previous</span> -->
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleFade" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<!-- <span class="visually-hidden">Next</span> -->
</button>
</div>
<!-- brand section -->
<div id="brand" class="container">
<div class="row my-3 py-5">
<img class="img-fluid col-lg-2 col-md-4 col-4" src="/img/brand/1.png" alt="">
<img class="img-fluid col-lg-2 col-md-4 col-4" src="/img/brand/2.png" alt="">
<img class="img-fluid col-lg-2 col-md-4 col-4" src="/img/brand/3.png" alt="">
<img class="img-fluid col-lg-2 col-md-4 col-4" src="/img/brand/4.png" alt="">
<img class="img-fluid col-lg-2 col-md-4 col-4" src="/img/brand/5.png" alt="">
<img class="img-fluid col-lg-2 col-md-4 col-4" src="/img/brand/6.png" alt="">
</div>
</div>
<!-- new section -->
<!-- <div id="new" class="w-100 py-3 mb-5">
<div class="row p-0 m-0">
<div class="one col-lg-4 col-md-12 col-12 p-0">
<img class="img-fluid" src="/img/new/1.jpg" alt="">
</div>
<div class="one col-lg-4 col-md-12 col-12 p-0">
<img class="img-fluid" src="/img/new/4.jpg" alt="">
</div>
<div class="one col-lg-4 col-md-12 col-12 p-0">
<img class="img-fluid" src="/img/new/3.jpg" alt="">
</div>
</div>
</div> -->
<!--. BEST OF CLOTHING -->
<div id="deal">
<h2>BEST OF CLOTHING</h2>
<hr class="mx-auto">
</div>
<div id="dealimages">
<div class="row mx-auto container">
<div class="category text-center col-lg-3 col-md-3 col-6">
<img class="img-fluid mb-3" src="/img1/deal1.jpg" alt="">
</div>
<div class="category text-center col-lg-3 col-md-3 col-6">
<img class="img-fluid mb-3" src="/img1/deal2.jpg" alt="">
</div>
<div class="category text-center col-lg-3 col-md-3 col-6">
<img class="img-fluid mb-3" src="/img1/deal3.jpg" alt="">
</div>
<div class="category text-center col-lg-3 col-md-3 col-6">
<img class="img-fluid mb-3" src="/img1/deal8.jpg" alt="">
</div>
<!-- <div class="category text-center col-lg-2 col-md-3 col-6">
<img class="img-fluid mb-3" src="/img1/deal3.jpg" alt="">
</div>
<div class="category text-center col-lg-2 col-md-3 col-6">
<img class="img-fluid mb-3" src="/img1/deal8.jpg" alt="">
</div>
<div class="category text-center col-lg-2 col-md-3 col-6">
<img class="img-fluid mb-3" src="/img1/deal3.jpg" alt="">
</div>
<div class="category text-center col-lg-2 col-md-3 col-6">
<img class="img-fluid mb-3" src="/img1/deal8.jpg" alt="">
</div> -->
</div>
<!-- newest arrival -->
<section id="mensection" class="my-3 pb-2">
<div class="container mt-5 py-3">
<h2 class="font-weight-bold text-center">NEWEST ARRIVAL</h2>
<hr class="mx-auto">
</div>
<div class="row mx-auto container">
<div class="product text-center col-lg-3 col-md-4 col-6">
<img class="img-fluid mb-3" src="/img1/newest/n1.jpg" alt="">
<h5 class="p-name">New*</h5>
<h4 class="p-price">Rs.500/-</h4>
<button class="buy-btn">Buy Now</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-6">
<img class="img-fluid mb-3" src="/img1/newest/n2.jpg" alt="">
<h5 class="p-name">New*</h5>
<h4 class="p-price">Rs.500/-</h4>
<button class="buy-btn">Buy Now</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-6">
<img class="img-fluid mb-3" src="/img1/newest/n3.jpg" alt="">
<h5 class="p-name">New*</h5>
<h4 class="p-price">Rs.500/-</h4>
<button class="buy-btn">Buy Now</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-6">
<img class="img-fluid mb-3" src="/img1/newest/n4.jpg" alt="">
<h5 class="p-name">New*</h5>
<h4 class="p-price">Rs.500/-</h4>
<button class="buy-btn">Buy Now</button>
</div>
</div>
</section>
<!-- parallax part -->
<div id="banner" class="my-2">
<div class="container">
<h4>MID SEASON SALE</h4>
<h1>Monsoon Collection <br>UP TO 20% OFF</h1>
<button>SHOP NOW</button>
</div>
</div>
<section id="mensection" class="my-3 pb-2">
<div class="container mt-5 py-3">
<h2 class="font-weight-bold text-center">Featured Products</h2>
<hr class="mx-auto">
</div>
<div class="row mx-auto container">
<div class="product text-center col-lg-3 col-md-4 col-6">
<img class="img-fluid mb-3" src="/img1/featured/f1.jpg" alt="">
<h5 class="p-name">Featured*</h5>
<h4 class="p-price">Rs.500/-</h4>
<button class="buy-btn">Buy Now</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-6">
<img class="img-fluid mb-3" src="/img1/featured/f2.jpg" alt="">
<h5 class="p-name">Featured*</h5>
<h4 class="p-price">Rs.500/-</h4>
<button class="buy-btn">Buy Now</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-6">
<img class="img-fluid mb-3" src="/img1/featured/f3.jpg" alt="">
<h5 class="p-name">Featured*</h5>
<h4 class="p-price">Rs.500/-</h4>
<button class="buy-btn">Buy Now</button>
</div>
<div class="product text-center col-lg-3 col-md-4 col-6">
<img class="img-fluid mb-3" src="/img1/featured/f4.jpg" alt="">
<h5 class="p-name">Featured*</h5>
<h4 class="p-price">Rs.500/-</h4>
<button class="buy-btn">Buy Now</button>
</div>
</div>
</section>
<!-- banners part 1 -->
<div id="sm-banner" class="section-a py-4">
<div class="banner-box ">
<h4>Crazy Deals</h4>
<h2>Buy 1 Get One Free</h2>
<span>the best classic dress is on sale at Treasure</span>
<button class="white">Learn More</button>
</div>
<div class="banner-box banner-box2">
<h4>Monsoon </h4>
<h2>Upcoming season</h2>
<span>the best classic dress is on sale at Treasure</span>
<button class="white">Collection</button>
</div>
</div>
<!-- banner -->
<div class="col-lg-12 col-md-12 col-12 my-4">
<div class="">
<img class="w-100 w-100 img-fluid" src="/img1/dis.jpg" alt="">
</div>
</div>
<!-- footer -->
<footer class="bg-dark text-center text-white">
<!-- Grid container -->
<div class="container p-4 pb-0">
<!-- Section: Form -->
<section class="">
<form action="">
<!--Grid row-->
<div class="row d-flex justify-content-center">
<!--Grid column-->
<div class="col-auto">
<p class="pt-2">
<strong>Sign up for our newsletter</strong>
</p>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-md-5 col-12">
<!-- Email input -->
<div class="form-outline form-white mb-4">
<input type="email" id="form5Example29" class="form-control" />
<label class="form-label pt-2" for="form5Example29">Email address</label>
</div>
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-auto">
<!-- Submit button -->
<button type="submit" class="btn btn-outline-light mb-4">
Subscribe
</button>
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</form>
</section>
<!-- Section: Form -->
</div>
<!-- Grid container -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2022 Copyright:
<!-- <a class="text-white" href="https://mdbootstrap.com/">MDBootstrap.com</a> -->
</div>
<!-- Copyright -->
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Xe+8cL9oJa6tN/veChSP7q+mnSPaj5Bcu9mPX5F5xIGE0DVittaqT5lorf0EI7Vk"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-kjU+l4N0Yf4ZOJErLsIcvOU2qSb74wXpOhqTvwVx3OElZRweTnQ6d31fXEoRD1Jy"
crossorigin="anonymous"></script>
<!-- <div class="shop" id="shop">
</div>
-->
</body>
</html>