-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
434 lines (416 loc) · 31.1 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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hockeys</title>
<!-- google font link -->
<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;300;400;500;600;700;800&display=swap" rel="stylesheet">
<!-- tailwind-css and daisy-ul link -->
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.6.0/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body style="font-family: 'Manrope', sans-serif;">
<!-- header area -->
<header class="container lg:py-5 py-2 px-5 mx-auto">
<!-- navbar section start style-->
<nav class="flex lg:justify-between justify-evenly items-center">
<div class="dropdown lg:hidden">
<div class="-ml-5">
<button class="btn btn-square btn-ghost">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" class="inline-block w-5 h-5 stroke-current"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path></svg>
</button>
</div>
<ul tabindex="0" class="dropdown-content z-[1] menu p-2 shadow bg-base-100 rounded-box w-[265px]">
<li class="ml-7"><a href="">Home</a></li>
<li class="ml-7"><a href="">About</a></li>
<li class="ml-7"><a href="">Pages</a></li>
<li class="ml-7"><a href="">Blog</a></li>
<li class="ml-7"><a href="">Contact</a></li>
</ul>
</div>
<h2 class="text-black lg:text-3xl text-2xl font-extrabold mr-8">Hockey<span class=" text-[#FF4240]">’</span>s</h2>
<ul class="lg:flex hidden">
<li class="ml-7 text-[16px] font-bold text-[#FF4240]"><a href="">Home</a></li>
<li class="ml-7 text-[16px] font-bold "><a href="">About</a></li>
<li class="ml-7 text-[16px] font-bold "><a href="">Pages</a></li>
<li class="ml-7 text-[16px] font-bold "><a href="">Blog</a></li>
<li class="ml-7 text-[16px] font-bold "><a href="">Contact</a></li>
</ul>
<div class="flex items-center ">
<div class="lg:flex lg:items-center hidden mr-2 w-6 h-6 text-[#89898b] cursor-pointer">
<i class="fa fa-magnifying-glass"></i>
</div>
<button class="lg:py-3 py-2 lg:px-6 px-2 rounded-lg bg-[#FF4240] text-white font-bold text-sm ml-5">Get Ticket</button>
</div>
</nav>
<!-- navbar section end style-->
<!-- banner section start style -->
<div class="carousel container lg:mt-[50px] mt-[30px]">
<div id="slide1" class="carousel-item relative w-full ">
<img src="./Images/1.png" class="w-full" />
<div class="absolute flex justify-between transform -translate-y-1/2 left-5 right-5 top-1/2">
<a href="#slide4" class="btn btn-circle">❮</a>
<a href="#slide2" class="btn btn-circle">❯</a>
</div>
</div>
<div id="slide2" class="carousel-item relative w-full ">
<img src="./Images/1.png" class="w-full" />
<div class="absolute flex justify-between transform -translate-y-1/2 left-5 right-5 top-1/2">
<a href="#slide1" class="btn btn-circle">❮</a>
<a href="#slide3" class="btn btn-circle">❯</a>
</div>
</div>
<div id="slide3" class="carousel-item relative w-full ">
<img src="./Images/1.png" class="w-full" />
<div class="absolute flex justify-between transform -translate-y-1/2 left-5 right-5 top-1/2">
<a href="#slide2" class="btn btn-circle">❮</a>
<a href="#slide4" class="btn btn-circle">❯</a>
</div>
</div>
</div>
<div class="lg:w-[500px] lg:h-[150px] w-[100%] h-[150px] relative left-0 top-0 bg-[#131318] lg:relative lg:left-[55%] lg:-top-52 rounded-2xl">
<div class="p-8 space-y-3 mt-5">
<h3 class="lg:text-2xl text-xs font-extrabold text-white">Meet all the heroes from the field</h3>
<p class="lg:text-base text-xs lg:font-medium font-light text-gray-500">Professional hockey developed in the United States and Canada around the turn of the 20th century.</p>
</div>
</div>
<!-- banner section end style -->
</header>
<!-- main area -->
<main class="container lg:py-5 py-2 px-5 mx-auto">
<!-- Professional Hockeys Club start -->
<section class="lg:-mt-24 mt-12">
<div class="lg:w-[600px] mx-auto text-center space-y-3">
<h2 class="text-[#131318] lg:text-4xl text-xl font-extrabold">Professional Hockeys Club</h2>
<p class="text-gray-500 lg:text-base text-xs font-medium">Professional hockey developed in the United States and Canada around the turn of the 20th century. Houghton, Michigan,</p>
</div>
<div class="lg:w-[1140px] lg:mx-auto">
<div class="flex lg:justify-evenly lg:items-center gap-5 mt-10 lg:flex-row flex-col">
<div class="w-[250px] mx-auto text-center space-y-3">
<div class="radial-progress text-orange-600" style="--value:87;" role="progressbar"><span class="text-[#131318] text-lg font-extrabold">87%</span></div>
<h4 class="text-[#131318] text-xl font-semibold">Prayer Facility</h4>
<p class="text-[#131318] text-base font-normal">Amet consectetur. Condimentum dignissim adipiscing .</p>
</div>
<div class="w-[250px] mx-auto text-center space-y-3">
<div class="radial-progress text-[#49d293]" style="--value:95;" role="progressbar"><span class="text-[#131318] text-lg font-extrabold">95%</span></div>
<h4 class="text-[#131318] text-xl font-semibold">Experienced Coach</h4>
<p class="text-[#131318] text-base font-normal">Amet consectetur. Condimentum dignissim adipiscing .</p>
</div>
<div class="w-[250px] mx-auto text-center space-y-3">
<div class="radial-progress text-[#ffb546]" style="--value:90;" role="progressbar"><span class="text-[#131318] text-lg font-extrabold">90%</span></div>
<h4 class="text-[#131318] text-xl font-semibold">Senior Player</h4>
<p class="text-[#131318] text-base font-normal">Amet consectetur. Condimentum dignissim adipiscing .</p>
</div>
<div class="w-[250px] mx-auto text-center space-y-3">
<div class="radial-progress text-[#4c8df1]" style="--value:80;" role="progressbar"><span class="text-[#131318] text-lg font-extrabold">80%</span></div>
<h4 class="text-[#131318] text-xl font-semibold">Training Ground</h4>
<p class="text-[#131318] text-base font-normal">Amet consectetur. Condimentum dignissim adipiscing .</p>
</div>
</div>
</div>
</section>
<!-- Professional Hockeys Club end -->
<!-- Program Sections start -->
<section class="lg:mt-24 mt-12">
<div class="lg:w-[600px] mx-auto text-center space-y-3">
<h2 class="text-[#131318] lg:text-4xl text-xl font-extrabold">Program Sections</h2>
<p class="text-gray-500 lg:text-base text-xs font-medium">With ten men’s teams, six ladies teams, a mixed side, a range of youth teams, various touring sides and Back to Hockey sessions,</p>
</div>
<div class="grid lg:grid-cols-12 grid-cols-1 gap-5 mx-auto mt-10">
<div class=" lg:w-full w-[335px] lg:h-[400px] h-[244px] lg:col-span-6 col-span-1 mx-auto rounded-2xl " style="background-image: url('./Images/2.png'); background-size: cover; background-repeat: no-repeat; background-position: center;">
<div class="lg:w-[500px] w-[300px] p-6 relative lg:top-24 space-y-3">
<h4 class="text-white lg:text-2xl text-xl font-extrabold">Junior Program</h4>
<p class="text-white lg:text-base text-xs font-medium">The Junior section provides a welcoming and social place to learn, have fun, make friends, and enjoy membership. For more information about our Junior section,</p>
<button class="btn btn-error font-bold text-white">Register Now!</button>
</div>
</div>
<div class="lg:w-full w-[335px] lg:h-[400px] h-[244px] lg:col-span-6 col-span-1 mx-auto rounded-2xl" style="background-image: url('./Images/3.png'); background-size: cover; background-repeat: no-repeat; background-position: center;">
<div class="lg:w-[500px] w-[300px] p-6 relative lg:top-24 space-y-3">
<h4 class="text-white lg:text-2xl text-xl font-extrabold">Teenager Program</h4>
<p class="text-white lg:text-base text-xs font-medium">The Junior section provides a welcoming and social place to learn, have fun, make friends, and enjoy membership. For more information about our Junior section,</p>
<button class="btn btn-error font-bold text-white">Register Now!</button>
</div>
</div>
<div class="lg:w-full w-[335px] lg:h-[400px] h-[244px] lg:col-span-12 col-span-1 lg:mx-auto mx-auto rounded-2xl" style="background-image: url('./Images/4.png'); background-size: cover; background-repeat: no-repeat; background-position: center;">
<div class="lg:w-[500px] w-[300px] p-6 relative lg:top-24 space-y-3">
<h4 class="text-white lg:text-2xl text-xl font-extrabold">Professional Program</h4>
<p class="text-white lg:text-base text-xs font-medium">The Junior section provides a welcoming and social place to learn, have fun, make friends, and enjoy membership. For more information about our Junior section,</p>
<button class="btn btn-error font-bold text-white">Register Now!</button>
</div>
</div>
</div>
</section>
<!-- Program Sections end -->
<!-- Our New Products start -->
<section class="lg:mt-24 mt-12">
<div class="lg:w-[600px] mx-auto text-center space-y-3">
<h2 class="text-[#131318] lg:text-4xl text-xl font-extrabold">Our New Products</h2>
<p class="text-gray-500 lg:text-base text-xs font-medium">Please note that our squads span two year groups based on school year birthdates, as per
the England Hockey Championships.</p>
</div>
<div class="grid lg:grid-cols-2 grid-cols-1 lg:gap-6 gap-4 my-10">
<div class="lg:flex items-center gap-5">
<img src="./Images/5.png" alt="" class="w-[335px] object-cover">
<div class="space-y-2 my-5">
<i class="fa fa-star mr-5 text-[#F99808]"> <span class="text-gray-500">5.0</span></i>
<i class="fa fa-eye mr-5 text-gray-500"> <span>20</span></i>
<i class="fa fa-heart mr-5 text-gray-500"> <span>200</span></i>
<h3 class="text-xl font-extrabold text-[#131318]">World Cup Flags Football</h3>
<p class="text-base font-medium text-gray-400">With training and competitive league matches weekly</p>
<div class="lg:flex gap-6 space-y-2">
<h3 class="text-lg font-extrabold text-[#FF4240]">Price - $22.00</h3>
<p class="text-base font-medium text-gray-400"><i class="fa fa-cart-shopping"></i> Delivery Fee : Free</p>
</div>
</div>
</div>
<div class="lg:flex items-center gap-5 my-2">
<img src="./Images/7.png" alt="" class="w-[335px] object-cover">
<div class="space-y-2 my-5">
<i class="fa fa-star mr-5 text-[#F99808]"> <span class="text-gray-500">5.0</span></i>
<i class="fa fa-eye mr-5 text-gray-500"> <span>20</span></i>
<i class="fa fa-heart mr-5 text-gray-500"> <span>200</span></i>
<h3 class="text-xl font-extrabold text-[#131318]">Cap For Hockeys</h3>
<p class="text-base font-medium text-gray-400">With training and competitive league matches weekly</p>
<div class="lg:flex gap-6 space-y-2">
<h3 class="text-lg font-extrabold text-[#FF4240]">Price - $22.00</h3>
<p class="text-base font-medium text-gray-400"><i class="fa fa-cart-shopping"></i> Delivery Fee : Free</p>
</div>
</div>
</div>
<div class="lg:flex items-center gap-5 my-2">
<img src="./Images/9.png" alt="" class="w-[335px] object-cover">
<div class="space-y-2 my-5">
<i class="fa fa-star mr-5 text-[#F99808]"> <span class="text-gray-500">5.0</span></i>
<i class="fa fa-eye mr-5 text-gray-500"> <span>20</span></i>
<i class="fa fa-heart mr-5 text-gray-500"> <span>200</span></i>
<h3 class="text-xl font-extrabold text-[#131318]">World Cup Flags Football</h3>
<p class="text-base font-medium text-gray-400">With training and competitive league matches weekly</p>
<div class="lg:flex gap-6 space-y-2">
<h3 class="text-lg font-extrabold text-[#FF4240]">Price - $22.00</h3>
<p class="text-base font-medium text-gray-400"><i class="fa fa-cart-shopping"></i> Delivery Fee : Free</p>
</div>
</div>
</div>
<div class="lg:flex items-center gap-5 my-2">
<img src="./Images/6.png" alt="" class="w-[335px] object-cover">
<div class="space-y-2 my-5">
<i class="fa fa-star mr-5 text-[#F99808]"> <span class="text-gray-500">5.0</span></i>
<i class="fa fa-eye mr-5 text-gray-500"> <span>20</span></i>
<i class="fa fa-heart mr-5 text-gray-500"> <span>200</span></i>
<h3 class="text-xl font-extrabold text-[#131318]">World Cup Flags Football</h3>
<p class="text-base font-medium text-gray-400">With training and competitive league matches weekly</p>
<div class="lg:flex gap-6 space-y-2">
<h3 class="text-lg font-extrabold text-[#FF4240]">Price - $22.00</h3>
<p class="text-base font-medium text-gray-400"><i class="fa fa-cart-shopping"></i> Delivery Fee : Free</p>
</div>
</div>
</div>
<div class="lg:flex items-center gap-5 my-2">
<img src="./Images/8.png" alt="" class="w-[335px] object-cover">
<div class="space-y-2 my-5">
<i class="fa fa-star mr-5 text-[#F99808]"> <span class="text-gray-500">5.0</span></i>
<i class="fa fa-eye mr-5 text-gray-500"> <span>20</span></i>
<i class="fa fa-heart mr-5 text-gray-500"> <span>200</span></i>
<h3 class="text-xl font-extrabold text-[#131318]">World Cup Flags Football</h3>
<p class="text-base font-medium text-gray-400">With training and competitive league matches weekly</p>
<div class="lg:flex gap-6 space-y-2">
<h3 class="text-lg font-extrabold text-[#FF4240]">Price - $22.00</h3>
<p class="text-base font-medium text-gray-400"><i class="fa fa-cart-shopping"></i> Delivery Fee : Free</p>
</div>
</div>
</div>
<div class="lg:flex items-center gap-5 my-2">
<img src="./Images/10.png" alt="" class="w-[335px] object-cover">
<div class="space-y-2 my-5">
<i class="fa fa-star mr-5 text-[#F99808]"> <span class="text-gray-500">5.0</span></i>
<i class="fa fa-eye mr-5 text-gray-500"> <span>20</span></i>
<i class="fa fa-heart mr-5 text-gray-500"> <span>200</span></i>
<h3 class="text-xl font-extrabold text-[#131318]">World Cup Flags Football</h3>
<p class="text-base font-medium text-gray-400">With training and competitive league matches weekly</p>
<div class="lg:flex gap-6 space-y-2">
<h3 class="text-lg font-extrabold text-[#FF4240]">Price - $22.00</h3>
<p class="text-base font-medium text-gray-400"><i class="fa fa-cart-shopping"></i> Delivery Fee : Free</p>
</div>
</div>
</div>
</div>
</section>
<!-- Our New Products end -->
<!-- Clients Question start -->
<section class="lg:mt-24 mt-12">
<div class="lg:w-[600px] mx-auto text-center space-y-3">
<h2 class="text-[#131318] lg:text-4xl text-xl font-extrabold">Clients Question</h2>
<p class="text-gray-500 lg:text-base text-xs font-medium">I can provide some general examples of good and bad questions to ask a client in different scenarios</p>
</div>
<div class="lg:grid grid-cols-2 flex flex-col gap-5 my-10">
<img src="./Images/11.png" alt="" class="lg:w-full lg:h-[550px]">
<div class="lg:w-full">
<div class="collapse collapse-plus bg-[#e7e7e7]">
<input type="radio" name="my-accordion-3" checked="checked" />
<div class="collapse-title text-xl font-bold text-[#131318]">
Our Equipment
</div>
<div class="collapse-content text-base font-normal text-gray-400">
<p>In general, good questions are open-ended, non-judgmental, and focused on the client's experience or perspective. Bad questions are closed-ended, judgmental, or inappropriate for the context. It's important to consider the client's needs and goals when crafting questions, and to approach them with respect and empathy.</p>
</div>
</div>
<div class="collapse collapse-plus bg-[#e7e7e7] my-2">
<input type="radio" name="my-accordion-3" />
<div class="collapse-title text-xl font-bold text-[#131318]">
Hockey Training
</div>
<div class="collapse-content text-base font-normal text-gray-400">
<p>In general, good questions are open-ended, non-judgmental, and focused on the client's experience or perspective. Bad questions are closed-ended, judgmental, or inappropriate for the context. It's important to consider the client's needs and goals when crafting questions, and to approach them with respect and empathy.</p>
</div>
</div>
<div class="collapse collapse-plus bg-[#e7e7e7] my-2">
<input type="radio" name="my-accordion-3" />
<div class="collapse-title text-xl font-bold text-[#131318]">
Private Lessons
</div>
<div class="collapse-content text-base font-normal text-gray-400">
<p>In general, good questions are open-ended, non-judgmental, and focused on the client's experience or perspective. Bad questions are closed-ended, judgmental, or inappropriate for the context. It's important to consider the client's needs and goals when crafting questions, and to approach them with respect and empathy.</p>
</div>
</div>
<div class="collapse collapse-plus bg-[#e7e7e7] my-2">
<input type="radio" name="my-accordion-3" />
<div class="collapse-title text-xl font-bold text-[#131318]">
Ski Touring
</div>
<div class="collapse-content text-base font-normal text-gray-400">
<p>In general, good questions are open-ended, non-judgmental, and focused on the client's experience or perspective. Bad questions are closed-ended, judgmental, or inappropriate for the context. It's important to consider the client's needs and goals when crafting questions, and to approach them with respect and empathy.</p>
</div>
</div>
<div class="collapse collapse-plus bg-[#e7e7e7] my-2">
<input type="radio" name="my-accordion-3" />
<div class="collapse-title text-xl font-bold text-[#131318]">
Booking
</div>
<div class="collapse-content text-base font-normal text-gray-400">
<p>In general, good questions are open-ended, non-judgmental, and focused on the client's experience or perspective. Bad questions are closed-ended, judgmental, or inappropriate for the context. It's important to consider the client's needs and goals when crafting questions, and to approach them with respect and empathy.</p>
</div>
</div>
<div class="collapse collapse-plus bg-base-200">
<input type="radio" name="my-accordion-3" />
<div class="collapse-title text-xl font-bold text-[#131318]">
Pricings
</div>
<div class="collapse-content text-base font-normal text-gray-400">
<p>In general, good questions are open-ended, non-judgmental, and focused on the client's experience or perspective. Bad questions are closed-ended, judgmental, or inappropriate for the context. It's important to consider the client's needs and goals when crafting questions, and to approach them with respect and empathy.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Clients Question end -->
<!-- Get In Touch start -->
<section class="lg:mt-24 mt-12">
<div class="lg:w-[600px] mx-auto text-center space-y-3">
<h2 class="text-[#131318] lg:text-4xl text-xl font-extrabold">Get In Touch</h2>
<p class="text-gray-500 lg:text-base text-xs font-medium">I can provide some general examples of good and bad questions to ask a client in different scenarios</p>
</div>
<div class="grid lg:grid-cols-3 my-10">
<div class="lg:col-span-1 space-y-3">
<div class="lg:w-[90%] w-[100%] h-[150px] bg-[#f8fdf0] rounded-2xl p-5 space-y-3">
<img src="./Images/Group 1171275317.png" alt="" class="w-10 h-10">
<p class="text-base font-normal text-[#a0a0a2]">Phone Number : </p>
<h4 class="text-lg font-extrabold text-[#131318]">(+62) 123-321-543</h4>
</div>
<div class="lg:w-[90%] w-[100%] h-[150px] bg-[#f8fdf0] rounded-2xl p-5 space-y-3 ">
<img src="./Images/Group 1171275318.png" alt="" class="w-10 h-10">
<p class="text-base font-normal text-[#a0a0a2]">Email : </p>
<h4 class="text-lg font-extrabold text-[#131318]">hockeys@support.com</h4>
</div>
<div class="lg:w-[90%] w-[100%] h-[150px] bg-[#eff5fd] rounded-2xl p-5 space-y-3 ">
<img src="./Images/Group 1171275321.png" alt="" class="w-10 h-10">
<p class="text-base font-normal text-[#a0a0a2]">Location : </p>
<h4 class="text-lg font-extrabold text-[#131318]">152/1 Mohakhali Wireless Gate</h4>
</div>
</div>
<div class="lg:col-span-2 col-span-1 space-y-5 lg:my-0 my-3">
<div class="grid lg:grid-cols-2 col-span-1 gap-2">
<div class="col-span-1 my-2">
<label for="" class="text-xl font-bold text-[#131318]">Your Name</label>
<input type="text" id=""placeholder="Enter your full name" class="lg:w-full w-[100%] h-[60px] bg-[#f0f0f1] p-5 rounded-xl">
</div>
<div class="col-span-1 my-2">
<label for="" class="text-xl font-bold text-[#131318]">Your Email</label>
<input type="email" id=""placeholder="Enter your email" class="lg:w-full w-[100%] h-[60px] bg-[#f0f0f1] p-5 rounded-xl">
</div>
<div class="col-span-1 my-2">
<label for="" class="text-xl font-bold text-[#131318]">Subject</label>
<input type="text" id=""placeholder="Enter your subject" class="lg:w-full w-[100%] h-[60px] bg-[#f0f0f1] p-5 rounded-xl">
</div>
<div class="col-span-1 my-2">
<label for="" class="text-xl font-bold text-[#131318]">Phone Number</label>
<input type="text" id=""placeholder="Enter your phone number" class="lg:w-full w-[100%] h-[60px] bg-[#f0f0f1] p-5 rounded-xl">
</div>
<div class="lg:col-span-2 col-span-1 my-2">
<label for="message" class="text-xl font-bold text-[#131318]">Message</label>
<textarea id="message" rows="5"placeholder="Write your message" class="lg:w-full w-[100%] h-[200px] bg-[#f0f0f1] p-5 rounded-xl"></textarea>
</div>
<div class="lg:col-span-2 col-span-1 bg-[#FF4240] text-center rounded-xl py-4 my-2 lg:w-full w-[100%]">
<button class="text-xl font-bold text-white">Send Message</button>
</div>
</div>
</div>
</div>
</section>
<!-- Get In Touch end -->
<!-- Social Media start -->
<section class="lg:mt-24 mt-12 rounded-xl bg-[#f0f0f1] lg:w-full w-[100%] p-5">
<div class="lg:w-[600px] mx-auto text-center space-y-6">
<h2 class="text-[#131318] lg:text-4xl text-xl font-extrabold">Social Media</h2>
<i class="fa fa-twitter mx-5 text-xl cursor-pointer"></i>
<i class="fa fa-facebook mx-5 text-xl cursor-pointer"></i>
<i class="fa fa-instagram mx-5 text-xl cursor-pointer"></i>
<i class="fa fa-github mx-5 text-xl cursor-pointer"></i>
</div>
</section>
<!-- Social Media end -->
</main>
<!-- footer area -->
<footer class="container lg:py-5 py-2 px-5 mx-auto mt-10 bg-[#131318] lg:h-[450px]">
<div class="grid lg:grid-cols-12 grid-cols-1 text-white lg:p-20 gap-6 py-5">
<div class="col-span-3 lg:w-full lg:text-left space-y-3 text-center">
<h2 class="text-2xl font-extrabold">Get In Touch</h2>
<p class="text-base font-medium text-gray-400">Dit amet consectetur. Condimentum adipiscing aliquam turpis placerat dolor. Purus urna in sit nullam proin. </p>
<p class="text-base font-medium cursor-pointer"><i class="fa fa-envelope text-[#ff4240]"></i> hockeys@support.com</p>
<p class="text-base font-medium cursor-pointer"><i class="fa fa-phone text-[#ff4240]"></i> (+62) 123-321-543</p>
</div>
<div class="lg:col-span-6 col-span-2 lg:ml-32 -mx-8 ">
<div class="grid lg:grid-cols-6 grid-cols-2 ">
<div class="lg:col-span-3 col-span-1 lg:w-full space-y-2 mx-auto lg:text-left text-center">
<h4 class="text-xl font-bold">Company</h4>
<p class="text-base font-medium text-gray-400 cursor-pointer">About us</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Leadership</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Careers</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">News & Article</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Legal Notice</p>
</div>
<div class="lg:col-span-3 col-span-1 lg:w-full space-y-2 mx-auto lg:text-left text-center">
<h4 class="text-xl font-bold">Support</h4>
<p class="text-base font-medium text-gray-400 cursor-pointer">Help Center</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">FAQ</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Ticket Support</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Contact Us</p>
</div>
</div>
</div>
<div class="col-span-3 lg:mx-20 lg:w-full space-y-2 mx-auto lg:text-left text-center">
<h4 class="text-xl font-bold">Services</h4>
<p class="text-base font-medium text-gray-400 cursor-pointer">Academy</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Group Lesson</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Private Lesson</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Hockeys for kids</p>
<p class="text-base font-medium text-gray-400 cursor-pointer">Hockeys for Adult</p>
</div>
</div>
</footer>
<!-- Font Awesome link -->
<script src="https://kit.fontawesome.com/1133702304.js" crossorigin="anonymous"></script>
</body>
</html>