-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
231 lines (228 loc) · 10.9 KB
/
Copy pathindex.html
File metadata and controls
231 lines (228 loc) · 10.9 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
<!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</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
title: '#363958',
price: '#FABE4C',
description: '#3E3E3E',
},
backgroundColor: {
imgBg: '#F1F1F1',
}
}
}
}
</script>
</head>
<body>
<header class="bg-[#FFFBF0]">
<nav class="flex justify-around pt-8">
<div>
<img class="h-10 w-72" src="images/logo.png" alt="Logo">
</div>
<div class="mt-1.5">
<a class="font-semibold mx-2 w-4" href="#">Home</a>
<a class="font-semibold mx-2 w-4" href="#">Products</a>
<a class="font-semibold mx-2 w-4" href="#">About Us</a>
<a class="font-semibold mx-2 w-4" href="#">Contact US</a>
</div>
</nav>
<section class="container sm:flex md:flex-row p-5 justify-center align-middle mx-auto">
<div class="basis-1/2">
<h1 class="uppercase w-96 text-4xl md:text-6xl lg:text-7xl font-semibold mx-3"><span
class="text-price">be the
penguin</span>
<span class="text-title">of winter</span>
</h1>
<p class="text-description text-base my-7 font-medium mx-3">Lorem Ipsum is simply dummy text of the
printing and typesetting industry.</p>
<button
class="bg-gradient-to-b from-[#A4BC46] to-[#85A019] mx-3 h-14 w-40 uppercase text-white rounded-lg">
<img class="inline h-6 w-6" src="icons/shopping-cart 1.png" alt="Shopping Cart Icon">
buy now
</button>
</div>
<div class="basis-1/2">
<img src="images/model.png" alt="Model">
</div>
</section>
</header>
<main>
<section class="container mx-auto">
<h2 class="text-title text-5xl uppercase font-bold my-20">women's jacket</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-3 justify-between gap-16">
<div class="mx-5">
<div class="bg-imgBg rounded-3xl">
<img class="p-10" src="images/jacket-1.png" alt="Jacket-1">
</div>
<h3 class="text-title text-2xl font-bold mt-5">Yellow Coat Jacket</h3>
<p class="text-description font-medium text-base my-5">Lorem Ipsum is simply dummy text of the
printing
and
typesetting
industry.</p>
<div class="flex">
<p class="text-price text-4xl font-black">$234</p>
<button
class="bg-gradient-to-b from-[#A4BC46] to-[#85A019] mx-3 h-14 w-40 uppercase text-white rounded-lg">
<img class="inline h-6 w-6" src="icons/shopping-cart 1.png" alt="Shopping Cart Icon">
buy now
</button>
</div>
</div>
<div class="mx-5">
<div class="bg-imgBg rounded-3xl">
<img class="p-10" src="images/jacket-2.png" alt="Jacket-2">
</div>
<h3 class="text-title text-2xl font-bold mt-5">Ladies Jacket</h3>
<p class="text-description font-medium text-base my-5">Lorem Ipsum is simply dummy text of the
printing
and
typesetting
industry.</p>
<div class="flex">
<p class="text-price text-4xl font-black">$234</p>
<button
class="bg-gradient-to-b from-[#A4BC46] to-[#85A019] mx-3 h-14 w-40 uppercase text-white rounded-lg">
<img class="inline h-6 w-6" src="icons/shopping-cart 1.png" alt="Shopping Cart Icon">
buy now
</button>
</div>
</div>
<div class="mx-5">
<div class="bg-imgBg rounded-3xl">
<img class="p-10" src="images/jacket-3.png" alt="Jacket-3">
</div>
<h3 class="text-title text-2xl font-bold mt-5">Women's Leather Jacket</h3>
<p class="text-description font-medium text-base my-5">Lorem Ipsum is simply dummy text of the
printing
and
typesetting
industry.</p>
<div class="flex">
<p class="text-price text-4xl font-black">$234</p>
<button
class="bg-gradient-to-b from-[#A4BC46] to-[#85A019] mx-3 h-14 w-40 uppercase text-white rounded-lg">
<img class="inline h-6 w-6" src="icons/shopping-cart 1.png" alt="Shopping Cart Icon">
buy now
</button>
</div>
</div>
</div>
</section>
<section class="container mx-auto">
<h2 class="text-title text-5xl uppercase font-bold my-20">men's jacket</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-3 justify-between gap-16">
<div class="mx-5">
<div class="bg-imgBg rounded-3xl">
<img class="p-10" src="images/jacket-4.png" alt="Jacket-4">
</div>
<h3 class="text-title text-2xl font-bold mt-5">Men's Snowboard Jacket</h3>
<p class="text-description font-medium text-base my-5">Lorem Ipsum is simply dummy text of the
printing
and
typesetting
industry.</p>
<div class="flex">
<p class="text-price text-4xl font-black">$234</p>
<button
class="bg-gradient-to-b from-[#A4BC46] to-[#85A019] mx-3 h-14 w-40 uppercase text-white rounded-lg">
<img class="inline h-6 w-6" src="icons/shopping-cart 1.png" alt="Shopping Cart Icon">
buy now
</button>
</div>
</div>
<div class="mx-5">
<div class="bg-imgBg rounded-3xl">
<img class="p-10" src="images/jacket-5.png" alt="Jacket-5">
</div>
<h3 class="text-title text-2xl font-bold mt-5">Men's Leather Jacket</h3>
<p class="text-description font-medium text-base my-5">Lorem Ipsum is simply dummy text of the
printing
and
typesetting
industry.</p>
<div class="flex">
<p class="text-price text-4xl font-black">$234</p>
<button
class="bg-gradient-to-b from-[#A4BC46] to-[#85A019] mx-3 h-14 w-40 uppercase text-white rounded-lg">
<img class="inline h-6 w-6" src="icons/shopping-cart 1.png" alt="Shopping Cart Icon">
buy now
</button>
</div>
</div>
<div class="mx-5">
<div class="bg-imgBg rounded-3xl">
<img class="p-10" src="images/jacket-6.png" alt="Jacket-6">
</div>
<h3 class="text-title text-2xl font-bold mt-5">Men's Casual Jacket</h3>
<p class="text-description font-medium text-base my-5">Lorem Ipsum is simply dummy text of the
printing
and
typesetting
industry.</p>
<div class="flex">
<p class="text-price text-4xl font-black">$234</p>
<button
class="bg-gradient-to-b from-[#A4BC46] to-[#85A019] mx-3 h-14 w-40 uppercase text-white rounded-lg">
<img class="inline h-6 w-6" src="icons/shopping-cart 1.png" alt="Shopping Cart Icon">
buy now
</button>
</div>
</div>
</div>
</section>
<section
class="grid grid-cols-1 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-2 p-10 justify-center align-middle mt-16">
<div>
<div>
<div>
<img class="h-20 w-20" src="images/house.png" alt="House">
</div>
<div>
<h3 class="text-title text-2xl font-bold">Find the Perfect Fit</h3>
<p class="text-description font-normal text-base">Everybody is different, which is why we offer
styles for every body.</p>
</div>
</div>
<div class="my-5">
<div>
<img class="h-20 w-20" src="images/box.png" alt="Box">
</div>
<div>
<h3 class="text-title text-2xl font-bold">Free Exchanges</h3>
<p class="text-description font-normal text-base">One of the many reasons you can shop with
peace of mind.</p>
</div>
</div>
<div>
<div>
<img class="h-20 w-20" src="images/question.png" alt="Question">
</div>
<div>
<h3 class="text-title text-2xl font-bold">Contact Our Seller</h3>
<p class="text-description font-normal text-base">They are here to help you. That's quite
literally what we pay them
for.</p>
</div>
</div>
</div>
<div class="mt-5">
<img src="images/shopping.png" alt="Shopping">
</div>
</section>
</main>
<footer class="text-description text-center mt-5">
© 2023, Penguin Fashion, All rights reserved.
</footer>
</body>
</html>