-
Notifications
You must be signed in to change notification settings - Fork 0
/
car-listing.html
549 lines (491 loc) · 31.5 KB
/
car-listing.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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
<!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>Listing - Car Rental</title>
<script src="https://kit.fontawesome.com/a010ff889c.js" crossorigin="anonymous"></script>
<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=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./dist/output.css">
</head>
<body>
<!-- HEADER (START) -->
<header class="sticky top-0 z-10 -mb-32"
style="background-image: linear-gradient(180deg, #000000 20%, transparent);">
<!-- Topbar -->
<div class="bg-transparent py-2 border-y-2 border-white/40">
<div class="container">
<div class="flex justify-between items-center text-xs">
<div class="flex gap-x-4">
<div>
<i class="fa-solid fa-phone text-white"></i>
<a class="text-white hover:text-red-600 hover:underline ml-1 font-medium"
href="tel:0000-1111-0000">0000-1111-0000</a>
</div>
<div class="hidden lg:block">
<i class="fa-solid fa-envelope text-white"></i>
<a class="text-white hover:text-red-600 hover:underline ml-1 uppercase font-medium"
href="mailto:contact@example.com">contact@example.com</a>
</div>
</div>
<div class="flex gap-x-5">
<a class="text-white/40 hover:text-red-600" href="#"><i class="fa-brands fa-facebook-f"></i></a>
<a class="text-white/40 hover:text-red-600" href="#"><i
class="fa-brands fa-twitter"></i></i></a>
<a class="text-white/40 hover:text-red-600" href="#"><i
class="fa-brands fa-instagram"></i></i></a>
<a class="text-white/40 hover:text-red-600" href="#"><i
class="fa-brands fa-pinterest-p"></i></a>
<a class="text-white/40 hover:text-red-600" href="#"><i class="fa-brands fa-youtube"></i></a>
</div>
</div>
</div>
</div>
<!-- Main Header -->
<div class="py-3 bg-transparent">
<div class="container">
<div class="flex justify-between items-center flex-wrap lg:flex-nowrap">
<div>
<a href="/">
<img class="w-28" src="./src/media/big-logo.png" alt="">
</a>
</div>
<nav class="hidden lg:flex items-center gap-x-8 text-sm">
<li class="list-none"> <a href="/"
class="text-white hover:text-red-600 uppercase">Home</a> </li>
<li class="list-none"> <a href="./car-listing.html"
class="text-white hover:text-red-600 uppercase">Our Cars</a>
</li>
<li class="list-none"> <a href="./app.html" class="text-white hover:text-red-600 uppercase">Get
App</a>
</li>
<li class="list-none"> <a href="./contact.html"
class="text-white hover:text-red-600 uppercase">Contact</a>
</li>
<li class="list-none">
<a class="primary-btn" href="tel:0000-1111-0000">0000-1111-0000</a>
</li>
</nav>
<!-- Mobile menu -->
<div class="navigation lg:hidden">
<button class="toggle absolute right-5 top-14" href=""><i class="fa fa-bars text-2xl text-white" aria-hidden="true"></i></button>
<nav class="text-sm bg-red-600 p-8">
<li class="list-none mb-3"> <a href="/"
class="text-white uppercase">Home</a> </li>
<li class="list-none mb-3"> <a href="./car-listing.html"
class="text-white uppercase">Our Cars</a>
</li>
<li class="list-none mb-3"> <a href="./app.html" class="text-white hover:text-red-600 uppercase">Get
App</a>
</li>
<li class="list-none mb-3"> <a href="./contact.html"
class="text-white uppercase">Contact</a>
</li>
</nav>
</div>
</div>
</div>
</div>
</header>
<!-- HEADER (END) -->
<!-- MAIN AREA (START) -->
<main>
<!-- BANNER -->
<section style="background-image: url(./src/media/title-bar.jpg)"
class="banner-shape h-96 lg:h-screen grid place-content-center bg-no-repeat bg-cover bg-center bg-black/90 bg-blend-overlay">
<div class="container pt-20">
<h1 class="text-white text-center uppercase text-3xl lg:text-4xl mb-3 font-bold">Car Listing</h1>
<div class="text-center text-white/40"><a class="text-red-600" href="/">Home</a> / Our APP
</div>
</div>
</section>
<!--CONTENT (START)-->
<section class="container py-10 lg:py-20">
<div class="flex flex-wrap lg:flex-nowrap gap-8">
<div class="w-full lg:w-9/12">
<!--FILTER FORM-->
<div
class="bg-[#F5F5F5] px-5 lg:px-10 py-5 shadow-lg flex gap-3 justify-between items-end lg:items-center">
<div class="flex gap-3 lg:gap-8 items-center">
<div class="flex flex-wrap gap-3 items-center">
<div class="text-black/60 text-sm">Show on page</div>
<select name="vehicle" id="" class="h-9 px-2 text-sm bg-[#fff] text-black/60">
<option value="all-makers">9 Autos</option>
<option value="bmw">12 Autos</option>
<option value="audi">15 Autos</option>
<option value="marcedes-benz">18 Autos</option>
<option value="porche">21 Autos</option>
<option value="lexus">24 Autos</option>
</select>
</div>
<div class="flex flex-wrap gap-3 items-center">
<div class="text-black/60 text-sm">Sort by</div>
<select name="vehicle" id="" class="h-9 px-2 text-sm bg-[#fff] text-black/60">
<option value="all-makers">Last Added</option>
<option value="bmw">First Added</option>
<option value="audi">Cheap First</option>
<option value="marcedes-benz">Expensive</option>
<option value="porche">Make A-Z</option>
<option value="lexus">Make Z-A</option>
</select>
</div>
</div>
<div class="flex gap-3 items-center">
<a href="#" class="border border-white px-2 py-1"><i class="fa fa-list"
aria-hidden="true"></i></a>
<a href="#" class="border border-white px-2 py-1"><i class="fa fa-th-large"
aria-hidden="true"></i></a>
</div>
</div>
<!--FILTER ITEMS-->
<div class="mt-8 mb-8 lg:mb-12">
<!--FILTER ITEM-->
<div
class="bg-[#F5F5F5] overflow-hidden p-5 mb-6 flex flex-wrap lg:flex-nowrap gap-4 lg:gap-8 justify-between items-center">
<div class="w-full lg:w-4/12">
<a href="./single-product.html">
<img src="./src/media/ag_mc_ford.jpeg" alt="Car Img">
</a>
</div>
<div class="w-full lg:w-6/12">
<h4
class="font-bold text-black/80 hover:text-red-600 hover:underline text-lg mb-3 lg:mb-5">
<a href="./single-product.html">AG MC FORD RAPTOR</a>
</h4>
<div class="flex gap-16">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Year: </span>2010</li>
<li><span class="text-black/80 font-medium">Fuel: </span>Petrol+CNG</li>
<li><span class="text-black/80 font-medium">Horsepower: </span>200 hp</li>
<li><span class="text-black/80 font-medium">Condition: </span>Driver</li>
</ul>
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Mileage: </span>4,567</li>
<li><span class="text-black/80 font-medium">Engine: </span>1900 cm3</li>
<li><span class="text-black/80 font-medium">Drive: </span>4x4</li>
<li><span class="text-black/80 font-medium">Stock Status: </span>In stock</li>
</ul>
</div>
</div>
<div class="w-full lg:w-2/12">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">PRICE:</span></li>
<li><span class="text-red-600 font-bold text-2xl">$200 </span>/ per day</li>
</ul>
</div>
</div>
<!--FILTER ITEM-->
<div
class="bg-[#F5F5F5] overflow-hidden p-5 mb-6 flex flex-wrap lg:flex-nowrap gap-4 lg:gap-8 justify-between items-center">
<div class="w-full lg:w-4/12">
<a href="./single-product.html">
<img src="./src/media/ag_mc_ford.jpeg" alt="Car Img">
</a>
</div>
<div class="w-full lg:w-6/12">
<h4
class="font-bold text-black/80 hover:text-red-600 hover:underline text-lg mb-3 lg:mb-5">
<a href="./single-product.html">AG MC FORD RAPTOR</a>
</h4>
<div class="flex gap-16">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Year: </span>2010</li>
<li><span class="text-black/80 font-medium">Fuel: </span>Petrol+CNG</li>
<li><span class="text-black/80 font-medium">Horsepower: </span>2000 hp</li>
<li><span class="text-black/80 font-medium">Condition: </span>Driver</li>
</ul>
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Mileage: </span>4,567</li>
<li><span class="text-black/80 font-medium">Engine: </span>1900 cm3</li>
<li><span class="text-black/80 font-medium">Drive: </span>4x4</li>
<li><span class="text-black/80 font-medium">Stock Status: </span>In stock</li>
</ul>
</div>
</div>
<div class="w-full lg:w-2/12">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">PRICE:</span></li>
<li><span class="text-red-600 font-bold text-2xl">$200 </span>/ per day</li>
</ul>
</div>
</div>
<!--FILTER ITEM-->
<div
class="bg-[#F5F5F5] overflow-hidden p-5 mb-6 flex flex-wrap lg:flex-nowrap gap-4 lg:gap-8 justify-between items-center">
<div class="w-full lg:w-4/12">
<a href="./single-product.html">
<img src="./src/media/ag_mc_ford.jpeg" alt="Car Img">
</a>
</div>
<div class="w-full lg:w-6/12">
<h4
class="font-bold text-black/80 hover:text-red-600 hover:underline text-lg mb-3 lg:mb-5">
<a href="./single-product.html">AG MC FORD RAPTOR</a>
</h4>
<div class="flex gap-16">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Year: </span>2010</li>
<li><span class="text-black/80 font-medium">Fuel: </span>Petrol+CNG</li>
<li><span class="text-black/80 font-medium">Horsepower: </span>200 hp</li>
<li><span class="text-black/80 font-medium">Condition: </span>Driver</li>
</ul>
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Mileage: </span>4,567</li>
<li><span class="text-black/80 font-medium">Engine: </span>1900 cm3</li>
<li><span class="text-black/80 font-medium">Drive: </span>4x4</li>
<li><span class="text-black/80 font-medium">Stock Status: </span>In stock</li>
</ul>
</div>
</div>
<div class="w-full lg:w-2/12">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">PRICE:</span></li>
<li><span class="text-red-600 font-bold text-2xl">$200 </span>/ per day</li>
</ul>
</div>
</div>
<!--FILTER ITEM-->
<div
class="bg-[#F5F5F5] overflow-hidden p-5 mb-6 flex flex-wrap lg:flex-nowrap gap-4 lg:gap-8 justify-between items-center">
<div class="w-full lg:w-4/12">
<a href="./single-product.html">
<img src="./src/media/ag_mc_ford.jpeg" alt="Car Img">
</a>
</div>
<div class="w-full lg:w-6/12">
<h4
class="font-bold text-black/80 hover:text-red-600 hover:underline text-lg mb-3 lg:mb-5">
<a href="./single-product.html">AG MC FORD RAPTOR</a>
</h4>
<div class="flex gap-16">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Year: </span>2010</li>
<li><span class="text-black/80 font-medium">Fuel: </span>Petrol+CNG</li>
<li><span class="text-black/80 font-medium">Horsepower: </span>200 hp</li>
<li><span class="text-black/80 font-medium">Condition: </span>Driver</li>
</ul>
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Mileage: </span>4,567</li>
<li><span class="text-black/80 font-medium">Engine: </span>1900 cm3</li>
<li><span class="text-black/80 font-medium">Drive: </span>4x4</li>
<li><span class="text-black/80 font-medium">Stock Status: </span>In stock</li>
</ul>
</div>
</div>
<div class="w-full lg:w-2/12">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">PRICE:</span></li>
<li><span class="text-red-600 font-bold text-2xl">$200 </span>/ per day</li>
</ul>
</div>
</div>
<!--FILTER ITEM-->
<div
class="bg-[#F5F5F5] overflow-hidden p-5 mb-6 flex flex-wrap lg:flex-nowrap gap-4 lg:gap-8 justify-between items-center">
<div class="w-full lg:w-4/12">
<a href="./single-product.html">
<img src="./src/media/ag_mc_ford.jpeg" alt="Car Img">
</a>
</div>
<div class="w-full lg:w-6/12">
<h4
class="font-bold text-black/80 hover:text-red-600 hover:underline text-lg mb-3 lg:mb-5">
<a href="./single-product.html">AG MC FORD RAPTOR</a>
</h4>
<div class="flex gap-16">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Year: </span>2010</li>
<li><span class="text-black/80 font-medium">Fuel: </span>Petrol+CNG</li>
<li><span class="text-black/80 font-medium">Horsepower: </span>200 hp</li>
<li><span class="text-black/80 font-medium">Condition: </span>Driver</li>
</ul>
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">Mileage: </span>4,567</li>
<li><span class="text-black/80 font-medium">Engine: </span>1900 cm3</li>
<li><span class="text-black/80 font-medium">Drive: </span>4x4</li>
<li><span class="text-black/80 font-medium">Stock Status: </span>In stock</li>
</ul>
</div>
</div>
<div class="w-full lg:w-2/12">
<ul class="text-black/60 text-sm leading-6">
<li><span class="text-black/80 font-medium">PRICE:</span></li>
<li><span class="text-red-600 font-bold text-2xl">$200 </span>/ per day</li>
</ul>
</div>
</div>
</div>
<!--Navigation-->
<ul class="pagination flex gap-2">
<li><a class="px-3 py-2 bg-black/80 border-b-4 border-red-600 text-sm text-white" href="#">1</a>
</li>
<li>
<a class="px-3 py-2 bg-[#F5F5F5] hover:bg-black/80 border-b-4 border-[#CCCCCC] hover:border-red-600 text-sm hover:text-white"
href="#">2</a>
</li>
<li>
<a class="px-3 py-2 bg-[#F5F5F5] hover:bg-black/80 border-b-4 border-[#CCCCCC] hover:border-red-600 text-sm hover:text-white"
href="#">3</a>
</li>
<li>
<a class="px-3 py-2 bg-[#F5F5F5] hover:bg-black/80 border-b-4 border-[#CCCCCC] hover:border-red-600 text-sm hover:text-white"
href="#">Next</a>
</li>
</ul>
</div>
<!--SIDEBAR-->
<sidebar class="w-full lg:w-3/12 bg-[#F5F5F5] mt-5 lg:mt-0">
<!--Sidebar Item-->
<div class="border-b-2 border-white p-8">
<h4 class="font-bold text-black/80 text-lg -mb-3">FIND BY RADIUS</h4>
<hr class="heading-border">
<form class="mt-7" action="">
<input type="text" name="car-locator-city" class="h-9 w-full px-2 mb-4 text-sm" value=""
placeholder="Enter a location" autocomplete="off">
<input class="w-full" type="range" id="vol" name="vol" min="0" max="100" value="70">
<label class="block mt-1 text-sm text-black/60" for="vol">Radius 77.00</label>
<input
class="w-full p-3 mt-3 font-bold uppercase bg-red-600 hover:bg-yellow-600 text-white text-sm cursor-pointer"
type="submit" value="Reset Fiter">
</form>
</div>
<!--Sidebar Item-->
<div class="border-b-2 border-white p-8">
<h4 class="font-bold text-black/80 text-lg -mb-3">PRICE RANGE</h4>
<hr class="heading-border">
<form class="mt-7" action="">
<input class="w-full" type="range" id="vol" name="vol" min="0" max="100" value="45">
<output id=""
class="mt-1 bg-black/60 text-center text-white text-sm py-1 block mx-auto w-2/4">70</output>
</form>
</div>
<!--Sidebar Item-->
<div class="border-b-2 border-white p-8">
<h4 class="font-bold text-black/80 text-lg -mb-3">VEHICLE BODY TYPE</h4>
<hr class="heading-border">
<form class="mt-7" action="">
<ul class="grid grid-cols-2 gap-4">
<li class="p-3 border border-white cursor-pointer">
<input class="hidden" type="checkbox" name="" id="" value="">
<label for="">
<img class="m-auto cursor-pointer" src="./src/media/convert-mini.png" alt="Car">
</label>
</li>
<li class="p-3 border border-white cursor-pointer">
<input class="hidden" type="checkbox" name="" id="" value="">
<label for="">
<img class="m-auto cursor-pointer" src="./src/media/coupe-mini.png" alt="Car">
</label>
</li>
<li class="p-3 border border-white cursor-pointer">
<input class="hidden" type="checkbox" name="" id="" value="">
<label for="">
<img class="m-auto cursor-pointer" src="./src/media/suv-mini.png" alt="Car">
</label>
</li>
<li class="p-3 border border-white cursor-pointer">
<input class="hidden" type="checkbox" name="" id="" value="">
<label for="">
<img class="m-auto cursor-pointer" src="./src/media/picup-mini.png" alt="Car">
</label>
</li>
<li class="p-3 border border-white cursor-pointer">
<input class="hidden" type="checkbox" name="" id="" value="">
<label for="">
<img class="m-auto cursor-pointer" src="./src/media/picup-mini.png" alt="Car">
</label>
</li>
<li class="p-3 border border-white cursor-pointer">
<input class="hidden" type="checkbox" name="" id="" value="">
<label for="">
<img class="m-auto cursor-pointer" src="./src/media/sedan-mini.png" alt="Car">
</label>
</li>
</ul>
<input
class="w-full p-3 mt-3 font-bold uppercase bg-red-600 hover:bg-yellow-600 text-white text-sm cursor-pointer"
type="submit" value="Reset Fiter">
</form>
</div>
<!--Sidebar Item-->
<div class="p-8">
<h4 class="font-bold text-black/80 text-lg -mb-3">RENT A CAR</h4>
<hr class="heading-border">
<div class="bg-white overflow-hidden mt-8">
<a href="">
<img class="scale-100 hover:scale-110 duration-1000" src="./src/media/ag_mc_ford.jpeg"
alt="Car Img">
<div class="py-5 text-center">
<h4 class="font-bold text-black/80 text-sm mb-5">AG MC Ford Raptor</h4>
<ul class="flex justify-center gap-x-4">
<li class="text-sm text-black/70 text-center">
<i class="fa fa-car" aria-hidden="true"></i>
<span class="border-x-2 border-black/10 px-4 block text-xs">2010</span>
</li>
<li class="text-sm text-black/70">
<i class="fa fa-road" aria-hidden="true"></i>
<span class="block text-xs">4567</span>
</li>
<li class="text-sm text-black/70">
<i class="fa fa-tachometer" aria-hidden="true"></i>
<span class="border-x-2 border-black/10 px-4 block text-xs">200</span>
</li>
</ul>
</div>
</a>
</div>
</div>
</sidebar>
</div>
</section>
<!--CONTENT (END)-->
</main>
<!-- MAIN AREA (END) -->
<!-- FOOTER (START) -->
<footer>
<div style="background-image: url(./src/media/footer-bg.jpg)"
class="grid place-content-center bg-no-repeat bg-cover bg-left-top bg-fixed py-16 lg:py-32 bg-black/90 bg-blend-overlay">
<div class="container">
<a href="/">
<img class="w-28 mx-auto" src="./src/media/big-logo.png" alt="">
</a>
<h1 class="text-white/30 text-center tracking-widest mt-12 mb-2">: SHOWROOM LOCATION :</h1>
<p class="text-white text-center">32 Market St.128, Deeja Town, Florida, CA 12345</p>
<div
class="flex justify-center lg:justify-between gap-x-24 flex-wrap lg:flex-nowrap mt-8 lg:mt-20 mb-6 lg:mb-24">
<p class="text-white"><span class="text-white/30 tracking-widest">PHONE:</span> 1111-0000-1111
</p>
<p class="text-white"><span class="text-white/30 tracking-widest">FAX:</span> +1 (234) 567 8998
</p>
<p class="text-white"><span class="text-white/30 tracking-widest">EMAIL:</span> info@example.com
</p>
<p class="text-white"><span class="text-white/30 tracking-widest">HOURS:</span> Mon – Fri :: 9am
–
6pm
</p>
</div>
<div class="flex justify-center gap-x-3">
<a class="text-white/40 border-2 border-white/40 hover:border-white/60 rounded-full w-9 h-9 leading-8 text-center"
href="#"><i class="fa-brands fa-facebook-f"></i></a>
<a class="text-white/40 border-2 border-white/40 hover:border-white/60 rounded-full w-9 h-9 leading-8 text-center"
href="#"><i class="fa-brands fa-twitter"></i></i></a>
<a class="text-white/40 border-2 border-white/40 hover:border-white/60 rounded-full w-9 h-9 leading-8 text-center"
href="#"><i class="fa-brands fa-instagram"></i></i></a>
<a class="text-white/40 border-2 border-white/40 hover:border-white/60 rounded-full w-9 h-9 leading-8 text-center"
href="#"><i class="fa-brands fa-pinterest-p"></i></a>
<a class="text-white/40 border-2 border-white/40 hover:border-white/60 rounded-full w-9 h-9 leading-8 text-center"
href="#"><i class="fa-brands fa-youtube"></i></a>
</div>
</div>
</div>
<div>
<p class="text-black/40 text-center text-xs my-5">COPYRIGHT © 2022. ALL RIGHTS RESERVED.</p>
</div>
</footer>
<!-- FOOTER (END) -->
<script src="./src/js/app.js"></script>
</body>
</html>