-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
349 lines (265 loc) · 15.8 KB
/
index.html
File metadata and controls
349 lines (265 loc) · 15.8 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
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>O-commerce project</title>
<link rel="stylesheet" href="css/main.css">
<!-- forn awsome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<body>
<!-- header -->
<header class="py-4 shadow-lg bg-white">
<div class="container flex items-center justify-between">
<!-- logo -->
<a href="#">
<img src="img/logo.svg" class="w-32">
</a>
<!-- searchber -->
<div class="w-full max-w-xl relative flex">
<span class="absolute left-4 top-3 text-lg text-gray-400">
<i class="fas fa-search"></i>
</span>
<input type="text" class="w-full border border-primary border-r-0 pl-12 py-3 rounded-l-md focus:outline-none" placeholder="search">
<button class="bg-primary text-white px-8 border border-l-0 border-primary rounded-r-md hover:bg-transparent hover:text-primary transition ">search</button>
</div>
<!-- icon -->
<div class="flex items-center space-x-8">
<a href="#" class="text-gray-700 text-center hover:text-primary transition relative">
<div class="text-2xl">
<i class="far fa-heart"></i>
</div>
<div class="text-xs leading-3">Wish list</div>
<span class="absolute bg-primary w-5 h-5 right-0 -top-1 rounded-full flex justify-center text-white text-xs">8</span>
</a>
<a href="#" class="text-gray-700 text-center hover:text-primary transition relative">
<div class="text-2xl">
<i class="far fa-shopping-bag"></i>
</div>
<div class="text-xs leading-3">Cart</div>
<span class="absolute bg-primary w-5 h-5 -right-3 -top-1 rounded-full flex justify-center text-white text-xs">4</span>
</a>
<a href="#" class="text-gray-700 text-center hover:text-primary transition relative">
<div class="text-2xl">
<i class="far fa-user"></i>
</div>
<div class="text-xs leading-3">Acount</div>
</a>
</div>
</div>
</header>
<!-- header -->
<!-- navber -->
<nav class="bg-gray-800">
<div class="container flex">
<!-- all catagory -->
<div class="flex items-center bg-primary px-8 py-4 cursor-pointer relative group">
<span class="mr-2 text-white">
<i class="fas git branch -M main fa-bars"></i>
</span>
<span class="text-white ">All Catagories</span>
<div class="absolute w-full top-full left-0 bg-white shadow-md py-3 divide-y divide-gray-400 divide-dashed hidden group-hover:block ">
<a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition">
<img src="img/icon/bed.svg" class="w-6 h-5 object-contain">
<span class="text-sm ml-6 text-gray-600">Badroom</span>
</a>
<a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition">
<img src="img/icon/sofa.svg" class="w-6 h-5 object-contain">
<span class="text-sm ml-6 text-gray-600">Sofa</span>
</a>
<a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition">
<img src="img/icon/office.svg" class="w-6 h-5 object-contain">
<span class="text-sm ml-6 text-gray-600">Office</span>
</a>
<a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition">
<img src="img/icon/outdoor-cafe.svg" class="w-6 h-5 object-contain">
<span class="text-sm ml-6 text-gray-600">Outdoor</span>
</a>
<a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition">
<img src="img/icon/bed-2.svg" class="w-6 h-5 object-contain">
<span class="text-sm ml-6 text-gray-600">Mattress</span>
</a>
<a href="#" class="flex items-center px-6 py-3 hover:bg-gray-100 transition">
<img src="img/icon/terrace.svg" class="w-6 h-5 object-contain">
<span class="text-sm ml-6 text-gray-600">Dining</span>
</a>
</div>
</div>
<!-- all catagory -->
<!-- nav items -->
<div class="flex justify-between flex-grow items-center text-white">
<div>
<ul class="flex gap-4 ml-8">
<li><a href="#">Home</a></li>
<li><a href="#">Shop</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div>
<a href="#">Login/Regester</a>
</div>
</div>
</div>
</nav>
<!-- navber -->
<!-- hero -->
<div class="bg-cover bg-no-repeat py-36" style="background-image:url(img/banner-bg.jpg) ;">
<div class="container">
<h2 class="text-6xl text-gray-800 capitalize ">best collection for <br> home decoration </h2>
<p class="my-3 text-gray-500 text-xs">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Doloribus cupiditate, alias <br> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Rerum, accusamus.</p>
<button class="font-bold text-white bg-primary py-2 px-4 rounded-md border border-primary hover:bg-transparent hover:text-gray-800">SHOP NOW</button>
</div>
</div>
<!-- hero -->
<!-- feature -->
<div class="container py-16 ">
<div class="w-10/12 grid grid-cols-3 gap-6 mx-auto justify-center">
<div class="flex items-center gap-5 border border-primary px-6 py-3 rounded-md">
<img src="img/icon/delivery-van.svg" class="h-12 w-12 object-contain">
<div>
<h4 class="text-lg font-medium">Free Shopping</h4>
<p class="text-sm text-gray-500">order over $200</p>
</div>
</div>
<div class="flex items-center gap-5 border border-primary px-6 py-3 rounded-md">
<img src="img/icon/money-back.svg" class="h-12 w-12 object-contain">
<div>
<h4 class="text-lg font-medium">Money Returns</h4>
<p class="text-sm text-gray-500">30 Days money return</p>
</div>
</div>
<div class="flex items-center gap-5 border border-primary px-6 py-3 rounded-md">
<img src="img/icon/service-hours.svg" class="h-12 w-12 object-contain">
<div>
<h4 class="text-lg font-medium">24/7 Support</h4>
<p class="text-sm text-gray-500">Customer support</p>
</div>
</div>
</div>
</div>
<!-- feature -->
<!-- catagoty -->
<div class="container my-5">
<h2 class="uppercase text-2xl font-medium mb-5">shop by category</h2>
<div class="grid grid-cols-3 gap-3">
<div class="relative rounded-sm group ">
<img src="img/catagori/category-1.jpg" >
<p class="text-xl bg-black bg-opacity-40 text-white absolute inset-0 flex items-center justify-center font-roboto font-medium group-hover:opacity-60 ">Badroom</p>
</div>
<div class="relative rounded-sm group ">
<img src="img/catagori/category-2.jpg" >
<p class="text-xl bg-black bg-opacity-40 text-white absolute inset-0 flex items-center justify-center font-roboto font-medium group-hover:opacity-60 ">Matterss</p>
</div>
<div class="relative rounded-sm group ">
<img src="img/catagori/category-3.jpg" >
<p class="text-xl bg-black bg-opacity-40 text-white absolute inset-0 flex items-center justify-center font-roboto font-medium group-hover:opacity-60 ">Cafe</p>
</div>
<div class="relative rounded-sm group ">
<img src="img/catagori/category-4.jpg" >
<p class="text-xl bg-black bg-opacity-40 text-white absolute inset-0 flex items-center justify-center font-roboto font-medium group-hover:opacity-60 ">Outdoor</p>
</div>
<div class="relative rounded-sm group ">
<img src="img/catagori/category-5.jpg" >
<p class="text-xl bg-black bg-opacity-40 text-white absolute inset-0 flex items-center justify-center font-roboto font-medium group-hover:opacity-60 ">Badroom</p>
</div>
<div class="relative rounded-sm group ">
<img src="img/catagori/category-4.jpg" >
<p class="text-xl bg-black bg-opacity-40 text-white absolute inset-0 flex items-center justify-center font-roboto font-medium group-hover:opacity-60 ">Outdoor</p>
</div>
</div>
</div>
<!-- catagoty -->
<!-- product wrpper -->
<div class="container my-20">
<h2 class="text-2xl font-medium mb-6 uppercase text-gray-800">top new arrival</h2>
<div class="grid grid-cols-4 gap-6 ">
<div class="bg-white rounded-md shadow-md overflow-hidden group">
<div class="relative">
<img src="img/prodoct/product9.jpg" class="w-full ">
<div class="absolute inset-0 flex justify-center items-center bg-black bg-opacity-40 gap-2 group-hover:bg-opacity-55">
<a href="#" class="bg-primary w-8 h-8 text-white text-lg rounded-full flex justify-center items-center hover:bg-gray-800 transition">
<i class="fas fa-search"></i>
</a>
<a href="#" class="bg-primary w-8 h-8 text-white text-lg rounded-full flex justify-center items-center hover:bg-gray-800 transition">
<i class="fas fa-heart"></i>
</a>
</div>
</div>
<div>
<div class="">
<h2 class="text-gray-800 text-xl font-medium py-3 pl-4">guyer chair</h2>
<p class="text-xl text-primary pl-4 font-bold">$45.00 <span class="text-gray-400 text-sm font-normal line-through">$66.00</span></p>
<p class="text-gray-500 pl-4">star (50)</p>
<button class="bg-primary py-1 w-full border border-primary text-white rounded-b hover:bg-transparent hover:text-primary">Add to Cart</button>
</div>
</div>
</div>
<div class="bg-white rounded-md shadow-md overflow-hidden group">
<div class="relative">
<img src="img/prodoct/product10.jpg" class="w-full ">
<div class="absolute inset-0 flex justify-center items-center bg-black bg-opacity-40 gap-2 group-hover:bg-opacity-55">
<a href="#" class="bg-primary w-8 h-8 text-white text-lg rounded-full flex justify-center items-center hover:bg-gray-800 transition">
<i class="fas fa-search"></i>
</a>
<a href="#" class="bg-primary w-8 h-8 text-white text-lg rounded-full flex justify-center items-center hover:bg-gray-800 transition">
<i class="fas fa-heart"></i>
</a>
</div>
</div>
<div>
<div class="">
<h2 class="text-gray-800 text-xl font-medium py-3 pl-4">guyer chair</h2>
<p class="text-xl text-primary pl-4 font-bold">$45.00 <span class="text-gray-400 text-sm font-normal line-through">$66.00</span></p>
<p class="text-gray-500 pl-4">star (50)</p>
<button class="bg-primary py-1 w-full border border-primary text-white rounded-b hover:bg-transparent hover:text-primary">Add to Cart</button>
</div>
</div>
</div>
<div class="bg-white rounded-md shadow-md overflow-hidden group">
<div class="relative">
<img src="img/prodoct/product12.jpg" class="w-full ">
<div class="absolute inset-0 flex justify-center items-center bg-black bg-opacity-40 gap-2 group-hover:bg-opacity-55">
<a href="#" class="bg-primary w-8 h-8 text-white text-lg rounded-full flex justify-center items-center hover:bg-gray-800 transition">
<i class="fas fa-search"></i>
</a>
<a href="#" class="bg-primary w-8 h-8 text-white text-lg rounded-full flex justify-center items-center hover:bg-gray-800 transition">
<i class="fas fa-heart"></i>
</a>
</div>
</div>
<div>
<div class="">
<h2 class="text-gray-800 text-xl font-medium py-3 pl-4">guyer chair</h2>
<p class="text-xl text-primary pl-4 font-bold">$45.00 <span class="text-gray-400 text-sm font-normal line-through">$66.00</span></p>
<p class="text-gray-500 pl-4">star (50)</p>
<button class="bg-primary py-1 w-full border border-primary text-white rounded-b hover:bg-transparent hover:text-primary">Add to Cart</button>
</div>
</div>
</div>
<div class="bg-white rounded-md shadow-md overflow-hidden group">
<div class="relative">
<img src="img/prodoct/product1.jpg" class="w-full ">
<div class="absolute inset-0 flex justify-center items-center bg-black bg-opacity-40 gap-2 group-hover:bg-opacity-55">
<a href="#" class="bg-primary w-8 h-8 text-white text-lg rounded-full flex justify-center items-center hover:bg-gray-800 transition">
<i class="fas fa-search"></i>
</a>
<a href="#" class="bg-primary w-8 h-8 text-white text-lg rounded-full flex justify-center items-center hover:bg-gray-800 transition">
<i class="fas fa-heart"></i>
</a>
</div>
</div>
<div>
<div class="">
<h2 class="text-gray-800 text-xl font-medium py-3 pl-4">guyer chair</h2>
<p class="text-xl text-primary pl-4 font-bold">$45.00 <span class="text-gray-400 text-sm font-normal line-through">$66.00</span></p>
<p class="text-gray-500 pl-4">star (50)</p>
<button class="bg-primary py-1 w-full border border-primary text-white rounded-b hover:bg-transparent hover:text-primary">Add to Cart</button>
</div>
</div>
</div>
</div>
</div>
<!-- product wrpper -->
</body>
</html>