-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
274 lines (249 loc) · 15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Penguin Fashion with Tailwind</title>
<script src="https://cdn.tailwindcss.com"></script>
<!--Google Font-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<style>
.bebas-neue-regular {
font-family: "Bebas Neue", sans-serif;
}
.font-roboto {
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}
</style>
</head>
<body>
<header class="bg-[#FFFBF0] p-2 md:p-32 cursor-pointer">
<nav>
<!--nav section -->
<div class="flex flex-col md:flex-row justify-between cursor-pointer">
<div class="max-w-56 hover:scale-110">
<img src="icons/logo.png" alt="">
</div>
<div class="flex md:flex-row list-none gap-10 font-roboto text-xl">
<li class="cursor-pointer hover:text-black hover:text-2xl">Home</li>
<li class="cursor-pointer hover:text-black hover:text-2xl">Product</li>
<li class="cursor-pointer hover:text-black hover:text-2xl">About Us</li>
<li class="cursor-pointer hover:text-black hover:text-2xl">Contact</li>
</div>
</div>
</nav>
<!--banner section -->
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="space-y-3">
<h1 class="text-7xl uppercase bebas-neue-regular">
<span class="text-[#FABE4C]">Be the Penguins </span>
<br>
of Winter
</h1>
<p>Lorem Ipsum is simply dummy text of the printing
and typesetting industry.</p>
<button class="py-4 px-9 bg-[#85A019] rounded-xl uppercase text-white my-4 font-medium hover:scale-110">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6 inline">
<path stroke-linecap="round" stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
</svg>
Buy Now</button>
</div>
<div class="py-10">
<img src="images/model.png" alt=""> <!--Model-->
</div>
</div>
</header>
<main class="max-w-7xl mx-auto cursor-pointer">
<!--Cart Item-->
<section class="py-12">
<h3 class="text-5xl bebas-neue-regular ">Woman Jackets </h3>
<!--jackets items -->
<div class="font-roboto grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-7 ">
<!--Item 1-->
<div class="space-y-3">
<div class="bg-[#F1F1F1] p-5 rounded-2xl drop-shadow-lg cursor-pointer hover:scale-110">
<img src="images/jacket-1.png" alt="">
</div>
<h4 class="text-2xl font-bold">Yellow Coat Jacket </h4>
<p>Lorem Ipsum is simply dummy text of the
printing and typesetting industry.</p>
<div class="flex justify-between ">
<h3 class="text-4xl font-black text-orange-400">$234</h3>
<button class="py-4 px-8 bg-[#85A019] rounded-xl uppercase text-white my-4 font-medium hover:scale-110">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6 inline">
<path stroke-linecap="round" stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
</svg>
Buy Now</button>
</div>
</div>
<!--Item 2-->
<div class="space-y-3">
<div class="bg-[#F1F1F1] p-5 rounded-2xl drop-shadow-lg cursor-pointer hover:scale-110">
<img src="images/jacket-2.png" alt="">
</div>
<h4 class="text-2xl font-bold">Yellow Coat Jacket </h4>
<p>Lorem Ipsum is simply dummy text of the
printing and typesetting industry.</p>
<div class="flex justify-between ">
<h3 class="text-4xl font-black text-orange-400">$234</h3>
<button class="py-4 px-8 bg-[#85A019] rounded-xl uppercase text-white my-4 font-medium hover:scale-110 ">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6 inline">
<path stroke-linecap="round" stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
</svg>
Buy Now</button>
</div>
</div>
<!--Item 3-->
<div class="space-y-3">
<div class="bg-[#F1F1F1] p-5 rounded-2xl drop-shadow-lg cursor-pointer hover:scale-110">
<img src="images/jacket-3.png" alt="">
</div>
<h4 class="text-2xl font-bold">Yellow Coat Jacket </h4>
<p>Lorem Ipsum is simply dummy text of the
printing and typesetting industry.</p>
<div class="flex justify-between ">
<h3 class="text-4xl font-black text-orange-400">$234</h3>
<button class="py-4 px-8 bg-[#85A019] rounded-xl uppercase text-white my-4 font-medium hover:scale-110">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6 inline">
<path stroke-linecap="round" stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
</svg>
Buy Now</button>
</div>
</div>
</div>
</section>
<section class="py-12">
<h3 class="text-5xl bebas-neue-regular "> Man Jackets </h3>
<!--jackets items -->
<div class="font-roboto grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-7 ">
<!--Item 1-->
<div class="space-y-3">
<div class="bg-[#F1F1F1] p-5 rounded-2xl drop-shadow-lg cursor-pointer hover:scale-110">
<img src="images/jacket-4.png" alt="">
</div>
<h4 class="text-2xl font-bold">Yellow Coat Jacket </h4>
<p>Lorem Ipsum is simply dummy text of the
printing and typesetting industry.</p>
<div class="flex justify-between ">
<h3 class="text-4xl font-black text-orange-400">$234</h3>
<button class="py-4 px-8 bg-[#85A019] rounded-xl uppercase text-white my-4 font-medium hover:scale-110 ">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6 inline">
<path stroke-linecap="round" stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
</svg>
Buy Now</button>
</div>
</div>
<!--Item 2-->
<div class="space-y-3">
<div class="bg-[#F1F1F1] p-5 rounded-2xl drop-shadow-lg cursor-pointer hover:scale-110">
<img src="images/jacket-5.png" alt="">
</div>
<h4 class="text-2xl font-bold">Yellow Coat Jacket </h4>
<p>Lorem Ipsum is simply dummy text of the
printing and typesetting industry.</p>
<div class="flex justify-between ">
<h3 class="text-4xl font-black text-orange-400">$234</h3>
<button class="py-4 px-8 bg-[#85A019] rounded-xl uppercase text-white my-4 font-medium hover:scale-110">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6 inline">
<path stroke-linecap="round" stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
</svg>
Buy Now</button>
</div>
</div>
<!--Item 3-->
<div class="space-y-3">
<div class="bg-[#F1F1F1] p-5 rounded-2xl drop-shadow-lg cursor-pointer hover:scale-110">
<img src="images/jacket-6.png" alt="">
</div>
<h4 class="text-2xl font-bold">Yellow Coat Jacket </h4>
<p>Lorem Ipsum is simply dummy text of the
printing and typesetting industry.</p>
<div class="flex justify-between ">
<h3 class="text-4xl font-black text-orange-400">$234</h3>
<button class="py-4 px-8 bg-[#85A019] rounded-xl uppercase text-white my-4 font-medium hover:scale-110">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5"
stroke="currentColor" class="w-6 h-6 inline">
<path stroke-linecap="round" stroke-linejoin="round"
d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0Z" />
</svg>
Buy Now</button>
</div>
</div>
</div>
</section>
</main>
<footer>
<!--Footer Section -->
<section>
<!--Support Session -->
<div class="max-w-7xl mx-auto flex flex-col md:flex-row space-x-10 cursor-pointer">
<div class=" flex flex-col py-32 space-y-10">
<div class=" flex justify-between gap-4 bg-[#FFF] p-5 rounded-2xl drop-shadow-lg hover:scale-110">
<div>
<div class="max-w-20">
<img src="icons/house.png" alt=""> <!--House-->
</div>
</div>
<div>
<h1 class="font-bold ">Find the Perfect Fit</h1>
<p>Everybody is different, which is why we
offer styles for every body.</p>
</div>
</div>
<div class=" flex justify-between gap-4 bg-[#FFF] p-5 rounded-2xl drop-shadow-lg hover:scale-110">
<div>
<div class="max-w-20">
<img src="icons/box.png" alt=""> <!--Box-->
</div>
</div>
<div>
<h1 class="font-bold">Find the Perfect Fit</h1>
<p>Everybody is different, which is why we
offer styles for every body.</p>
</div>
</div>
<!--Box-->
<div class=" flex justify-between gap-4 bg-[#FFF] p-5 rounded-2xl drop-shadow-lg hover:scale-110">
<div>
<div class="max-w-20">
<img src="icons/question.png" alt=""> <!--Question-->
</div>
</div>
<div>
<h1 class="font-bold">Find the Perfect Fit</h1>
<p>Everybody is different, which is why we
offer styles for every body.</p>
</div>
</div>
</div>
<div>
<div class="max-w-4xl md:max-w-5xl py-14">
<img src="images/shopping.png" alt="">
</div>
</div>
</div>
</section>
</footer>
</body>
</html>