-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
200 lines (196 loc) · 12.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
<!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>Penguin-Fashion-Tailwind</title>
<!-- Tailwind Style Sheet -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- 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=Roboto:wght@500&display=swap" rel="stylesheet">
</head>
<body style="font-family: 'Roboto', sans-serif;">
<header class="bg-orange-100">
<!-- navbar -->
<!-- top section -->
<div class="md:flex justify-around items-center">
<div class="space-y-4 px-4">
<!-- h-48 w-96 -->
<h1 class="text-6xl font-bold uppercase">
<p class="text-amber-400 inline">Be the Penguins</p><br> of
Winter
</h1>
<!-- h-14 w-80 -->
<p class="text-base w-2/3">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Adipisci,
debitis!</p>
<!-- h-14 w-44 -->
<br>
<button
class="text-base bg-gradient-to-r from-amber-400 to-lime-400 hover:from-lime-400 hover:to-green-600 text-white rounded-lg py-4 px-8 uppercase"><svg
xmlns="http://www.w3.org/2000/svg" class="inline h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round"
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>Buy Now</button>
</div>
<div class="mb-10">
<img src="images/model.png" alt="">
</div>
</div>
</header>
<main>
<!-- woman jecket section -->
<section class="container mx-auto my-12">
<h1 class="text-4xl Uppercase text-gray-800 font-bold mb-10">Woman Jacket</h1>
<div class="grid md:grid-cols-3 gap-8">
<div class="shadow-2xl rounded-2xl p-4 space-y-4">
<div class="rounded-2xl bg-slate-200 flex justify-center">
<img src="images/jacket-1.png" alt="" width="293px" height="293px" class="">
</div>
<h1 class="text-2xl font-bold">Yellow Coat Jacket</h1>
<p class="text-base font-light">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis,
labore.</p>
<div class="flex justify-between items-center">
<p class="text-4xl font-bold text-amber-400">$234</p>
<button
class="text-base bg-gradient-to-r from-amber-400 to-lime-400 hover:from-lime-400 hover:to-green-600 text-white rounded-lg py-4 px-8 uppercase"><svg
xmlns="http://www.w3.org/2000/svg" class="inline h-6 w-6" fill="none"
viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round"
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>Buy Now</button>
</div>
</div>
<div class="shadow-2xl rounded-2xl p-4 space-y-4">
<div class="rounded-2xl bg-slate-200 flex justify-center">
<img src="images/jacket-2.png" alt="" width="293px" height="293px" class="">
</div>
<h1 class="text-2xl font-bold">Yellow Coat Jacket</h1>
<p class="text-base font-light">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis,
labore.</p>
<div class="flex justify-between items-center">
<p class="text-4xl font-bold text-amber-400">$234</p>
<button
class="text-base bg-gradient-to-r from-amber-400 to-lime-400 hover:from-lime-400 hover:to-green-600 text-white rounded-lg py-4 px-8 uppercase"><svg
xmlns="http://www.w3.org/2000/svg" class="inline h-6 w-6" fill="none"
viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round"
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>Buy Now</button>
</div>
</div>
<div class="shadow-2xl rounded-2xl p-4 space-y-4">
<div class="rounded-2xl bg-slate-200 flex justify-center">
<img src="images/jacket-3.png" alt="" width="293px" height="293px" class="">
</div>
<h1 class="text-2xl font-bold">Yellow Coat Jacket</h1>
<p class="text-base font-light">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis,
labore.</p>
<div class="flex justify-between items-center">
<p class="text-4xl font-bold text-amber-400">$234</p>
<button
class="text-base bg-gradient-to-r from-amber-400 to-lime-400 hover:from-lime-400 hover:to-green-600 text-white rounded-lg py-4 px-8 uppercase"><svg
xmlns="http://www.w3.org/2000/svg" class="inline h-6 w-6" fill="none"
viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round"
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>Buy Now</button>
</div>
</div>
</div>
</section>
<!-- man jecket section -->
<section class="container mx-auto my-12">
<h1 class="text-4xl Uppercase text-gray-800 font-bold mb-10">Man Jacket</h1>
<div class="grid md:grid-cols-3 gap-8">
<div class="shadow-2xl rounded-2xl p-4 space-y-4">
<div class="rounded-2xl bg-slate-200 flex justify-center">
<img src="images/jacket-4.png" alt="" width="293px" height="293px" class="">
</div>
<h1 class="text-2xl font-bold">Yellow Coat Jacket</h1>
<p class="text-base font-light">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis,
labore.</p>
<div class="flex justify-between items-center">
<p class="text-4xl font-bold text-amber-400">$234</p>
<button
class="text-base bg-gradient-to-r from-amber-400 to-lime-400 hover:from-lime-400 hover:to-green-600 text-white rounded-lg py-4 px-8 uppercase"><svg
xmlns="http://www.w3.org/2000/svg" class="inline h-6 w-6" fill="none"
viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round"
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>Buy Now</button>
</div>
</div>
<div class="shadow-2xl rounded-2xl p-4 space-y-4">
<div class="rounded-2xl bg-slate-200 flex justify-center">
<img src="images/jacket-5.png" alt="" width="293px" height="293px" class="">
</div>
<h1 class="text-2xl font-bold">Yellow Coat Jacket</h1>
<p class="text-base font-light">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis,
labore.</p>
<div class="flex justify-between items-center">
<p class="text-4xl font-bold text-amber-400">$234</p>
<button
class="text-base bg-gradient-to-r from-amber-400 to-lime-400 hover:from-lime-400 hover:to-green-600 text-white rounded-lg py-4 px-8 uppercase"><svg
xmlns="http://www.w3.org/2000/svg" class="inline h-6 w-6" fill="none"
viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round"
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>Buy Now</button>
</div>
</div>
<div class="shadow-2xl rounded-2xl p-4 space-y-4">
<div class="rounded-2xl bg-slate-200 flex justify-center">
<img src="images/jacket-6.png" alt="" width="293px" height="293px" class="">
</div>
<h1 class="text-2xl font-bold">Yellow Coat Jacket</h1>
<p class="text-base font-light">Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis,
labore.</p>
<div class="flex justify-between items-center">
<p class="text-4xl font-bold text-amber-400">$234</p>
<button
class="text-base bg-gradient-to-r from-amber-400 to-lime-400 hover:from-lime-400 hover:to-green-600 text-white rounded-lg py-4 px-8 uppercase"><svg
xmlns="http://www.w3.org/2000/svg" class="inline h-6 w-6" fill="none"
viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
<path stroke-linecap="round" stroke-linejoin="round"
d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z" />
</svg>Buy Now</button>
</div>
</div>
</div>
</section>
<!-- last section -->
<section class="conatiner mx-auto xl:ml-20">
<div class="grid lg:grid-cols-2 gap-x-10 gap-y-4 xl:gap-y-10">
<div class="flex justify-center items-center shadow-lg rounded-2xl lg:order-1 2xl:ml-96 p-8">
<div><img src="images/house.png" alt="" width="78px" height="82px"></div>
<div class="ml-4">
<p>Find the Perfect Fit</p>
<small>Everybody is different, which is why we offer styles for every body.</small>
</div>
</div>
<div class="lg:row-span-3 lg:order-2 order-first flex justify-center 2xl:mr-96">
<img src="images/shopping.png" alt="" width="599px" height="354.07px">
</div>
<div class="flex justify-center items-center shadow-lg rounded-2xl lg:order-3 2xl:ml-96 p-8">
<div><img src="images/box.png" alt="" width="78px" height="82px"></div>
<div class="ml-4">
<p>Find the Perfect Fit</p>
<small>Everybody is different, which is why we offer styles for every body.</small>
</div>
</div>
<div class="flex justify-center items-center shadow-lg rounded-2xl lg:order-4 2xl:ml-96 p-8">
<div><img src="images/question.png" alt="" width="78px" height="82px"></div>
<div class="ml-4">
<p>Find the Perfect Fit</p>
<small>Everybody is different, which is why we offer styles for every body.</small>
</div>
</div>
</div>
</section>
</main>
</body>
</html>