-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
381 lines (344 loc) · 14.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Inter:wght@100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+BE+VLG:wght@100..400&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"
/>
<script
src="https://kit.fontawesome.com/5ed6c11ac4.js"
crossorigin="anonymous"
></script>
<title>Tea House</title>
<link rel="stylesheet" href="tailwend.css" />
</head>
<body>
<main class="max-w-screen-xl mx-auto px-16 lg:px-28">
<!-- Header section -->
<header class="lg:flex pt-10 mb-20">
<!-- Text conten -->
<div>
<h1 class="text-3xl md:text-7xl">
It's good <br />
tea time at The <br />
Tea House
</h1>
<br />
<p class="text-gray-600 w-3/4">
Tea and Botanical Solutions Supplier Give Optimum Satisfaction To
Your Taste Buds.
</p>
<br />
<button
class="bg-gradient-to-r from-orange-500 to-orange-200 text-xl rounded"
>
Explore More
<i
class="fa-solid -rotate-45 fa-arrow-right px-5 py-3 rounded-lg text-black font-bold"
></i>
</button>
</div>
<!-- Images Content -->
<div class="relative">
<!-- image -->
<div>
<img class="w-full" src="./images/banner.png" alt="" />
</div>
<!-- Card -->
<div
class="flex items-center absolute top-28 md:top-28 md:left-32 lg:left-28 bg-white shadow-lg px-2 py-2 md:px-10 lg:py-4 rounded-lg md:top-80"
>
<!-- icon -->
<div>
<i class="fa-solid fa-star text-2xl text-amber-600"></i>
</div>
<!-- text -->
<div class="ml-2">
<h2 class="lg:text-2xl font-bold">5.00</h2>
<p class="text-gray-500">Trust Pilot Ratings</p>
</div>
</div>
</div>
</header>
<!-- Our Featured Products -->
<section class="py-8 lg:py-24">
<!-- title -->
<div class="text-center mb-8">
<h1 class="text-3xl md:text-4xl font-bold mb-2">
Our Featured Products
</h1>
<p class="text-gray-600 max-w-screen-xl mx-auto">
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>
<!-- Grid Card -->
<div
class="grid-cols-1 md:grid-cols-2 lg:grid-cols-4 grid gap-6 text-center"
>
<!-- product card -->
<div class="rounded-lg shadow-md bg-gray-50 overflow-hidden">
<img class="mx-auto pt-4" src="./images/tea-1.png" alt="" />
<div class="p-4">
<h2 class="font-bold text-xl">Milk Tea</h2>
<p class="text-gray-600">
Creamer could be replaced by fresh milk
</p>
</div>
</div>
<div class="rounded-lg shadow-md bg-gray-50 overflow-hidden">
<img class="mx-auto pt-4" src="./images/tea-2.png" alt="" />
<div class="p-4">
<h2 class="font-bold text-xl">Black Tea</h2>
<p class="text-gray-600">
Creamer could be replaced by fresh milk
</p>
</div>
</div>
<div class="rounded-lg shadow-md bg-gray-50 overflow-hidden">
<img class="mx-auto pt-4" src="./images/tea-3.png" alt="" />
<div class="p-4">
<h2 class="font-bold text-xl">Green Tea</h2>
<p class="text-gray-600">
Creamer could be replaced by fresh milk
</p>
</div>
</div>
<div class="rounded-lg shadow-md bg-gray-50 overflow-hidden">
<img class="mx-auto pt-4" src="./images/tea-4.png" alt="" />
<div class="p-4">
<h2 class="font-bold text-xl">Lemon Tea</h2>
<p class="text-gray-600">
Creamer could be replaced by fresh milk
</p>
</div>
</div>
</div>
</section>
<!-- Great tea Scction -->
<section class="mb-24">
<div class="grid-cols-1 grid lg:grid-cols-2">
<!-- images Section -->
<div class="grid grid-cols-2 grid-rows-3 gap-4 lg:w-5/6">
<div
class="h-38 bg-gradient-to-r from-red-100 to-red-50 rounded-xl"
></div>
<div class="bg-orange-100 rounded-xl row-span-2">
<img class="mx-auto my-5" src="./images/fresh-1.png" alt="" />
</div>
<div class="bg-stone-100 rounded-xl row-span-2">
<img class="mx-auto my-5" src="./images/fresh-1.png" alt="" />
</div>
<div
class="h-38 bg-gradient-to-r from-stone-200 to-red-50 rounded-xl"
></div>
</div>
<!-- text Section -->
<div>
<h1 class="text-5xl font-bold mb-5">
Great Tea, Freshly Presented
</h1>
<p class="text-gray-500">
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>
<br />
<h1 class="font-2xl font-bold mb-5">Unique Taste</h1>
<p class="text-gray-500">
A Unique and different style from other teapots gives a luxurious
and minimalist impression
</p>
<br />
<h1 class="font-2xl font-bold mb-5">Premium Quality</h1>
<p class="text-gray-500">
Premium Quality that makes tea more elegant and more durable when
you use it.
</p>
</div>
</div>
</section>
<!-- Reviews Section -->
<section class="mb-24">
<div
class="bg-gradient-to-r from-red-500 to-orange-500 rounded-xl grid grid-cols-1 lg:grid-cols-2 text-white px-7 md:px-16"
>
<!-- Text Section -->
<div class="flex justify-center items-center overflow-hidden">
<div class="5/6">
<h1 class="text-5xl font-bold mb-5 mt-10">
Meet Our Super Clients
</h1>
<p class="mb-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>
<button class="bg-white text-orange-700 px-5 py-2 rounded-lg">
Show All
</button>
</div>
</div>
<!-- Reviews Card section -->
<div class="relative py-24">
<!-- Top Card -->
<div class="absolute z-10 top-44 md:top-52 mr-10">
<div
class="h-56 w-full md:w-3/4 p-14 flex items-center px-7 bg-white text-black rounded-lg"
>
<div class="absolute -top-5 -left-5 rounded-full">
<img class="p-1" src="./images/client.png" alt="" />
</div>
<div class="">
<p class="text-gray-700 mb-5">
We are providing the best and suitable home insurance
services for the people who are interested to treatment
</p>
<h1 class="font-bold">Ilham Yuda</h1>
<small class="font-bold text-slate-600">Saidee</small>
</div>
</div>
</div>
<div
class="relative opacity-40 left-12 md:left-32 h-56 w-full md:w-3/4 flex items-center px-7 bg-white text-black rounded-lg"
>
<div class="absolute -top-5 -left-5 rounded-full">
<img class="p-1" src="./images/client.png" alt="" />
</div>
<div class="">
<p class="text-gray-700 mb-5">
We are providing the best and suitable home insurance services
for the people who are interested to treatment
</p>
<h1 class="font-bold">Ilham Yuda</h1>
<small class="font-bold text-slate-600">Saidee</small>
</div>
</div>
<!-- Bottom card -->
<div
class="relative opacity-40 p-11 md:left-32 left-12 top-10 h-56 w-full md:w-3/4 flex items-center px-7 bg-white text-black rounded-lg"
>
<div class="absolute -top-5 -left-5 rounded-full">
<img class="p-1" src="./images/client.png" alt="" />
</div>
<div class="">
<p class="text-gray-700 mb-5 ">
We are providing the best and suitable home insurance services
for the people who are interested to treatment
</p>
<h1 class="font-bold">Ilham Yuda</h1>
<small class="font-bold text-slate-600">Saidee</small>
</div>
</div>
</div>
</div>
</section>
<!-- Main Card -->
<section class="">
<div class="text-center">
<h1 class="text-3xl">News & Events</h1>
<p class="text-gray-700">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 class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5 mb-24 ">
<div class="rounded-lg shadow-md overflow-hidden p-3 border-solid border-2 border border-gray-100">
<img class="mx-auto border-dotted shadow-lg shadow-gray-500/50 border-2 border-gray-500 rounded-lg" src="./images/news-1.png" alt="" />
<div class="p-4">
<p class="text-start">Feb 05, 2027</p>
<h2 class="font-bold text-start text-xl">Collecting 8 points for discount</h2>
<p class="text-gray-600 text-start">
There are many variations of passages of Lorem Ipsum available.
</p>
<h2 class="text-start text-lg font-bold ">Learn More</h2>
</div>
</div>
<div class="rounded-lg shadow-md overflow-hidden p-3 border-solid border-2 border border-gray-100">
<img class="mx-auto border-dotted shadow-lg shadow-gray-500/50 border-2 border-gray-500 rounded-lg" src="./images/news-1.png" alt="" />
<div class="p-4">
<p class="text-start">Feb 05, 2027</p>
<h2 class="font-bold text-start text-xl">Collecting 8 points for discount</h2>
<p class="text-gray-600 text-start">
There are many variations of passages of Lorem Ipsum available.
</p>
<h2 class="text-start text-lg font-bold ">Learn More</h2>
</div>
</div>
<div class="rounded-lg shadow-md overflow-hidden p-3 border-solid border-2 border border-gray-100">
<img class="mx-auto border-dotted shadow-lg shadow-gray-500/50 border-2 border-gray-500 rounded-lg" src="./images/news-1.png" alt="" />
<div class="p-4">
<p class="text-start">Feb 05, 2027</p>
<h2 class="font-bold text-start text-xl">Collecting 8 points for discount</h2>
<p class="text-gray-600 text-start">
There are many variations of passages of Lorem Ipsum available.
</p>
<h2 class="text-start text-lg font-bold ">Learn More</h2>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-orange-100 text-gray-700 py-10 px-4 md:px-16">
<div class="w-9/12 mx-auto">
<div class="mb-8 flex justify-between">
<img class="mb-8" src="./images/cup.png" alt="">
<div class=" items-center flex gap-5">
<h1>Ready to get strated?</h1>
<button class="bg-gradient-to-r from-orange-500 to-red-500 px-3 py-2 rounded-lg text-white">Get Started</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 ">
<div>
<h3 class="font-semibold text-lg mb-3">Quick Links</h3>
<ul class="space-y-2">
<li><a class="hover:text-orange-500" href="#">Home</a></li>
<li><a class="hover:text-orange-500" href="#">About Us</a></li>
<li><a class="hover:text-orange-500" href="#">Insurance</a></li>
<li><a class="hover:text-orange-500" href="#">Privacy Policy</a></li>
</ul>
</div>
<div>
<h3 class="font-semibold text-lg mb-3">Quick Links</h3>
<ul class="space-y-2">
<li><a class="hover:text-orange-500" href="#">Home</a></li>
<li><a class="hover:text-orange-500" href="#">About Us</a></li>
<li><a class="hover:text-orange-500" href="#">Insurance</a></li>
<li><a class="hover:text-orange-500" href="#">Privacy Policy</a></li>
</ul>
</div>
<div>
<h3 class="font-semibold text-lg mb-3">Quick Links</h3>
<ul class="space-y-2">
<li><a class="hover:text-orange-500" href="#">Home</a></li>
<li><a class="hover:text-orange-500" href="#">About Us</a></li>
<li><a class="hover:text-orange-500" href="#">Insurance</a></li>
<li><a class="hover:text-orange-500" href="#">Privacy Policy</a></li>
</ul>
</div>
<div>
<h3 class="font-semibold text-lg mb-3">Subscribe to our newsletter</h3>
<div class="flex flex-col space-y-2">
<div>
<input placeholder="Email Adress" type="text" class="bg-transparent border-b-2 border-black w-3/6 md:w-3/6">
<i class="fa-solid fa-chevron-right w-7 h-7 bg-orange-600 text-white rounded-full inline-flex justify-center items-center"></i>
<div class="flex justify-between w-2/5 mb-2 mt-8">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
</div>
</div>
</div>
<div class="text-center pt-4 mt-4">
</div>
</div>
</footer>
</body>
</html>