-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (87 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="w-full min-h-screen bg-zinc-100 font-['gilroy']">
<div class="nav flex justify-between items-center px-5 py-5 relative">
<i class="text-lg ri-menu-2-line"></i>
<i class="carticon text-lg ri-shopping-bag-2-fill"></i>
<div
class="cartexpnd hidden w-52 bg-zinc-300 rounded-lg absolute top-[80%] right-5 flex flex-col gap-2">
</div>
</div>
<div class="input flex justify-between px-5 gap-2">
<input
class="font-semibold capitalize px-4 py-3 rounded-lg w-full bg-zinc-200 outline-none"
type="text"
placeholder="search"
/>
<button class="px-4 py-3 text-white rounded-xl shader">
<i class="ri-equalizer-fill"></i>
</button>
</div>
<div
class="categories py-8 flex items-center gap-5 pl-5 whitespace-nowrap overflow-auto"
>
<div
class="icon rounded-full px-6 shadow-xl shadow-black/40 py-5 shader text-yellow-400"
>
<i class="text-lg ri-home-2-line"></i>
</div>
<div class="icon rounded-full shadow-md shadow-slate/10 px-5 py-4">
<i class="text-lg ri-scroll-to-bottom-line"></i>
</div>
<div class="icon rounded-full shadow-md shadow-slate/10 px-5 py-4">
<i class="text-lg ri-store-2-line"></i>
</div>
<div class="icon rounded-full shadow-md shadow-slate/10 px-5 py-4">
<i class="text-lg ri-bookmark-line"></i>
</div>
<div class="icon rounded-full shadow-md shadow-slate/10 px-5 py-4">
<i class="text-lg ri-global-line"></i>
</div>
<div class="icon rounded-full shadow-md shadow-slate/10 px-5 py-4">
<i class="text-lg ri-service-line"></i>
</div>
<div class="icon rounded-full shadow-md shadow-slate/10 px-5 py-4">
<i class="text-lg ri-home-2-fill"></i>
</div>
</div>
<div
class="products whitespace-nowrap flex overflow-auto px-5 gap-5"
></div>
<div class="populardiv mt-5">
<h3 class="text-2xl pl-5 font-semibold">Popular</h3>
<div
class="populars mt-5 flex whitespace-nowrap gap-5 overflow-auto w-full pl-5"
>
</div>
<!-- <div
class="footer flex items-center justify-between px-10 fixed bottom-0 left-0 w-full py-5 bg-white"
>
<div class="flex gap-10">
<i class="text-xl text-[#69628a] ri-home-2-fill"></i>
<i class="text-xl opacity-20 ri-heart-fill"></i>
</div>
<i
class="text-xl absolute shader top-0 left-1/2 -translate-y-1/3 -translate-x-1/2 flex items-center justify-center rounded-full shadow-xl shadow-black/30 w-[4rem] h-[4rem] ri-shopping-bag-fill text-yellow-400"
></i>
<div class="flex gap-10">
<i class="text-xl opacity-20 ri-settings-fill"></i>
<i class="text-xl opacity-20 ri-user-fill"></i>
</div>
</div> -->
</div>
<script src="script.js"></script>
</body>
</html>