-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
417 lines (399 loc) · 16.5 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
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tea House</title>
<!-- Tailwind Css -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
clifford: "#da373d",
},
fontFamily: {
manrope: ["Manrope", "sans-serif"],
},
},
},
};
</script>
<!-- Font cdn -->
<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=Manrope:wght@200..800&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/651adfbaf7.js"
crossorigin="anonymous"
></script>
</head>
<body class="font-manrope">
<header>
<!-- Banner Section -->
<section class="flex justify-center items-center h-screen gap-x-3">
<!-- Text Content -->
<div class="border-slate-500 w-5/12">
<h1 class="text-7xl font-extrabold leading-[100px]">
It's good<br />tea time at The<br />Tea House
</h1>
<p
class="text-[#777777] text-xl font-medium mt-7 mb-7 w-11/12 leading-[30px]"
>
Tea and Botanical Solutions Supplier Give Optimum Satisfaction To
Your Taste Buds.
</p>
<button
class="text-xl font-bold text-white px-5 py-3 rounded-lg bg-gradient-to-r from-orange-500 to-red-500"
>
Explore More <i class="fa-solid fa-arrow-right -rotate-45"></i>
</button>
</div>
<!-- Image Content -->
<div class="border-green-500 relative">
<!-- banner image -->
<img src="images/banner.png" alt="" />
<!-- card -->
<div
class="flex py-5 px-7 w-[255px] rounded-lg absolute bottom-3 left-20 bg-white drop-shadow-lg"
>
<img src="images/star.png" alt="" class="h-[45.94px]" />
<div class="">
<h3 class="text-3xl font-extrabold">5.00</h3>
<p class="text-base text-[#777777] font-semibold">
Trust Pilot Ratings
</p>
</div>
</div>
</div>
</section>
</header>
<main class="mx-auto max-w-screen-xl px-16">
<!-- Our Featured Products -->
<section class="grid justify-items-center mt-36">
<h1 class="text-[45px] font-extrabold">Our Featured Products</h1>
<p
class="text-[#777777] font-medium text-base leading-7 w-5/6 text-center mt-5"
>
There are many variations of passages of Lorem Ipsum available, but
the majority have suffered alteration in some form, by injected
humour, or randomised words which don't look even slightly believable.
</p>
<!-- card container -->
<div class="mt-12 grid grid-cols-4 gap-6 w-10/12 text-center">
<!-- Cards -->
<div
class="p-[30px] shadow-md bg-gray-50 rounded-xl grid justify-items-center hover:scale-105 hover:duration-500 hover:delay-100 ease-out transition duration-500"
>
<img src="images/tea-1.png" alt="" />
<h2 class="text-2xl font-extrabold mt-7 mb-2.5">Milk Tea</h2>
<p class="text-[#777777] font-semibold text-base">
Creamer could be replaced by fresh milk
</p>
</div>
<div
class="p-[30px] shadow-md bg-gray-50 rounded-xl grid justify-items-center hover:scale-105 hover:duration-500 hover:delay-100 ease-out transition duration-500"
>
<img src="images/tea-2.png" alt="" />
<h2 class="text-2xl font-extrabold mt-7 mb-2.5">Black Tea</h2>
<p class="text-[#777777] font-semibold text-base">
Creamer could be replaced by fresh milk
</p>
</div>
<div
class="p-[30px] shadow-md bg-gray-50 rounded-xl grid justify-items-center hover:scale-105 hover:duration-500 hover:delay-100 ease-out transition duration-500"
>
<img src="images/tea-3.png" alt="" />
<h2 class="text-2xl font-extrabold mt-7 mb-2.5">Lemon Tea</h2>
<p class="text-[#777777] font-semibold text-base">
Creamer could be replaced by fresh milk
</p>
</div>
<div
class="p-[30px] shadow-md bg-gray-50 rounded-xl grid justify-items-center hover:scale-105 hover:duration-500 hover:delay-100 ease-out transition duration-500"
>
<img src="images/tea-4.png" alt="" />
<h2 class="text-2xl font-extrabold mt-7 mb-2.5">Green Tea</h2>
<p class="text-[#777777] font-semibold text-base">
Creamer could be replaced by fresh milk
</p>
</div>
</div>
</section>
<!-- Great tea section -->
<section class="mt-32">
<div class="grid grid-cols-1 lg:grid-cols-2">
<!-- Image Container -->
<div class="grid grid-cols-2 grid-rows-3 gap-4 lg:w-5/6">
<div
class="h-34 bg-gradient-to-r from-red-100 to-red-50 rounded-xl"
></div>
<div class="bg-yellow-50 rounded-xl row-span-2">
<img class="mx-auto my-5" src="images/fresh-1.png" alt="" />
</div>
<div class="bg-green-50 rounded-xl row-span-2">
<img class="mx-auto my-5" src="images/fresh-2.png" alt="" />
</div>
<div
class="h-34 bg-gradient-to-r from-stone-200 to-stone-100 rounded-xl"
></div>
</div>
<!-- Text Container -->
<div>
<h1 class="text-5xl font-extrabold mb-5">
Great Tea, Freshly Presented
</h1>
<p class="text-gray-500 font-medium">
The meaning of gong cha is chanese is to provide the best tea to
emperor from all possessions. It represents the highest quality
and self expectation. Establishing in 2006, Gong cha had been
deeply appreciated by its custoers because of good words of mouth
and unique customized service orginated from Taiwan.
</p>
<h2 class="text-xl font-extrabold mt-8 mb-2">Unique Taste</h2>
<p class="text-gray-500 font-medium w-2/3">
A Unique and different style from other teapots gives a luxurious
and minimalist impression
</p>
<h2 class="text-xl font-extrabold mt-5 mb-2">Premium Quality</h2>
<p class="text-gray-500 font-medium w-2/3">
Premium Quality that makes tea more elegant and more durable when
you use it.
</p>
</div>
</div>
</section>
<!-- Reviews section -->
<section class="mt-32">
<div
class="bg-gradient-to-r from-orange-400 to-red-600 rounded-xl grid grid-cols-1 lg:grid-cols-2 text-white p-7 md:p-16"
>
<!-- Text container -->
<div class="flex justify-center items-center overflow-hidden">
<div class="w-5/6">
<h1 class="text-5xl font-extrabold mb-5">
Meet Our Super Clients
</h1>
<p class="leading-7 font-medium mb-7">
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by
injected humour, or randomised words which don't look even
slightly believable.
</p>
<button
class="bg-white font-bold text-orange-700 px-7 py-3 rounded-lg"
>
Show All
</button>
</div>
</div>
<!-- Review Card section -->
<div class="relative py-20">
<!-- Middle Card -->
<div class="absolute z-10 top-44 md:top-52">
<div
class="h-56 w-full md:w-3/4 bg-white text-black rounded-lg flex items-center px-11"
>
<div
class="absolute -top-5 -left-5 border-white border-4 rounded-full bg-white"
>
<img src="images/client.png" alt="" />
</div>
<div>
<p class="text-gray-500 mb-5">
We are providing the best and suitable home insurance
services for the people who are interested to treatment
</p>
<h3 class="font-bold">Hafsa Aakifah</h3>
<small class="font-medium text-[#5D5A6F]">Businessman</small>
</div>
<div class="absolute bottom-6 right-40">
<img src="images/circles.png" alt="" />
</div>
</div>
</div>
<!-- top card -->
<div
class="relative left-8 md:left-32 h-56 w-full md:w-3/4 bg-white text-black rounded-lg flex items-center px-11 opacity-30"
>
<div
class="absolute -top-5 -left-5 border-white border-4 rounded-full bg-white"
>
<img src="images/client.png" alt="" />
</div>
<div>
<p class="text-gray-500 mb-5">
We are providing the best and suitable home insurance services
for the people who are interested to treatment
</p>
<h3 class="font-bold">Hafsa Aakifah</h3>
<small class="font-medium text-[#5D5A6F]">Businessman</small>
</div>
</div>
<!-- bottom card -->
<div
class="relative left-8 md:left-32 top-10 h-56 w-full md:w-3/4 bg-white text-black rounded-lg flex items-center px-11 opacity-30"
>
<div
class="absolute -top-5 -left-5 border-white border-4 rounded-full bg-white"
>
<img src="images/client.png" alt="" />
</div>
<div>
<p class="text-gray-500 mb-5">
We are providing the best and suitable home insurance services
for the people who are interested to treatment
</p>
<h3 class="font-bold">Hafsa Aakifah</h3>
<small class="font-medium text-[#5D5A6F]">Businessman</small>
</div>
</div>
</div>
</div>
</section>
<!-- News & Events -->
<section class="mt-32">
<!-- Text Container -->
<div class="text-center grid grid-cols-1 justify-items-center">
<h1 class="text-[45px] font-extrabold mb-5">News & Events</h1>
<p class="text-base font-medium leading-7 text-[#777777] w-5/6 mb-12">
There are many variations of passages of Lorem Ipsum available, but
the majority have suffered alteration in some form, by injected
humour, or randomised words which don't look even slightly
believable.
</p>
</div>
<!-- Card Container -->
<div class="grid grid-cols-3 gap-6 justify-items-center">
<!-- cards -->
<div
class="border rounded-lg p-5 w-[364px] ease-out transition duration-500 hover:scale-105 hover:duration-500 hover:delay-100 hover:ease-in"
>
<img src="images/news-1.png" alt="" />
<div class="ml-2.5">
<p class="text-base text-[#777777] font-medium mt-5 mb-2.5">
Feb 05, 2027
</p>
<h3 class="text-xl font-extrabold mb-2.5 w-4/5">
Collecting 8 points for discount
</h3>
<p class="text-base text-[#777777] font-medium leading-7 mb-2.5">
There are many variations of passages of Lorem Ipsum available.
</p>
<button class="text-base font-bold">Learn More</button>
</div>
</div>
<div
class="border rounded-lg p-5 w-[364px] ease-out transition duration-500 hover:scale-105 hover:duration-500 hover:delay-100 hover:ease-in"
>
<img src="images/news-2.png" alt="" />
<div class="ml-2.5">
<p class="text-base text-[#777777] font-medium mt-5 mb-2.5">
Feb 05, 2027
</p>
<h3 class="text-xl font-extrabold mb-2.5 w-4/5">
Collecting 8 points for discount
</h3>
<p class="text-base text-[#777777] font-medium leading-7 mb-2.5">
There are many variations of passages of Lorem Ipsum available.
</p>
<button class="text-base font-bold">Learn More</button>
</div>
</div>
<div
class="border rounded-lg p-5 w-[364px] ease-out transition duration-500 hover:scale-105 hover:duration-500 hover:delay-100 hover:ease-in"
>
<img src="images/news-3.png" alt="" />
<div class="ml-2.5">
<p class="text-base text-[#777777] font-medium mt-5 mb-2.5">
Feb 05, 2027
</p>
<h3 class="text-xl font-extrabold mb-2.5 w-4/5">
Collecting 8 points for discount
</h3>
<p class="text-base text-[#777777] font-medium leading-7 mb-2.5">
There are many variations of passages of Lorem Ipsum available.
</p>
<button class="text-base font-bold">Learn More</button>
</div>
</div>
</div>
</section>
</main>
<footer class="mt-32 bg-gradient-to-r from-orange-100 to-red-100">
<div class="py-32">
<!-- footer top container -->
<div class="grid grid-cols-2 justify-items-center">
<img src="images/cup.png" alt="" />
<div>
<span class="text-[#494949] font-medium text-xl mr-10"
>Ready to get started?</span
>
<button
class="text-xl font-bold text-white px-5 py-3 rounded-lg bg-gradient-to-r from-orange-500 to-red-500"
>
Get Started
</button>
</div>
</div>
<!-- footer mid container -->
<div class="grid grid-cols-4 mt-[104px] justify-items-center">
<!-- container-1 -->
<div class="grid grid-cols-1 gap-[18px]">
<a href="" class="text-xl font-semibold mb-1">Quick Links</a>
<a href="">Home</a>
<a href="">About Us</a>
<a href="">Insurance</a>
<a href="">Privacy Policy</a>
</div>
<!-- container-2 -->
<div class="grid grid-cols-1 gap-[18px]">
<a href="" class="text-xl font-semibold mb-1">Our Service</a>
<a href="">Life Insurance</a>
<a href="">Car Insurance</a>
<a href="">Health Insurance</a>
<a href="">House Insurance</a>
</div>
<!-- container-3 -->
<div class="flex flex-col gap-[18px]">
<a href="" class="text-xl font-semibold mb-1">Help</a>
<a href="">FAQs</a>
<a href="">Contact Us</a>
</div>
<!-- container-4 -->
<div class="flex flex-col">
<h2 class="font-semibold text-2xl w-2/3 leading-10 mb-10">
Subscribe to our newsletter
</h2>
<div>
<input
type="email"
placeholder="Email address"
class="w-4/6 bg-transparent border-b-2 border-[#494949] py-5 px-2"
/>
<i
class="fa-solid fa-chevron-right bg-gradient-to-r from-orange-500 to-red-500 rounded-full text-white inline-flex w-7 h-7 justify-center items-center"
></i>
</div>
<div class="mt-12 flex gap-6 text-[#494949]">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
</div>
<!-- footer bottom container -->
<div class="mt-16 text-center">
<p class="font-medium text-[#494949]">
© 2024 UIDesign.to - All rights reserved.
</p>
</div>
</div>
</footer>
</body>
</html>