-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
713 lines (651 loc) · 30.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
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
<!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" />
<link rel="stylesheet" href="./resources/css/style.css" />
<link rel="stylesheet" href="resources/css/style.css">
<title>Escapium</title>
</head>
<body>
<!-- HEADER -->
<header class="header-home">
<!-- Start navbar -->
<nav class="navbar">
<!-- LEFT SIDE -->
<img src="./resources/images/logo/logo.png">
<ul class="navbar__navigation">
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./about.html">About</a>
</li>
<li>
<a href="#">Features</a>
<span class=".hidden">+</span>
</li>
<li>
<a href="./rooms.html">Rooms</a>
<span>+</span>
</li>
<li>
<a href="#">Booking</a>
<span>+</span>
</li>
<li>
<a href="./blogs.html">Blog</a>
<span>+</span>
</li>
<li>
<a href="./contact.html" class="navbar_last-element">Contacts</a>
</li>
<div class="navbar__right-side__sign-in nav__left">
<img src="./resources/images/icons/icon_person_wired.svg" class="navbar__right-side__icon">
<span>Sign In</span>
</div>
</ul>
<!-- RIGHT SIDE -->
<div class="navbar__right-side">
<!-- <img src="./resources/images/icons/icon_calendar.svg" class="navbar__hide"> -->
<a href="#" class="button button--white navbar__booknow">Book Now!</a>
<img src="./resources/images/icons/icon_search.svg" class="navbar__right-side__icon">
<div class="navbar__right-side__sign-in nav__right">
<img src="./resources/images/icons/icon_person_wired.svg" class="navbar__right-side__icon">
<span>Sign In</span>
</div>
<div class="navbar__right-side__hamburger">
<div class="cont-lines btn1">
<div class="hamburger__lines"></div>
<div class="hamburger__lines"></div>
<div class="hamburger__lines"></div>
</div>
</div>
</div>
</nav>
<!-- End navbar -->
<div class="header-home__content">
<h1>Escape <br> in 60 mins ?</h1>
<div class="header-home__p">
<hr class="footer__top__blocs__index__hr">
<p>View our rooms</p>
</div>
</div>
</header>
<main>
<!-- FEATURED ROOMS -->
<section class="section-rooms">
<hr>
<h2>Featured Rooms</h2>
<!-- First article -->
<article class="section-rooms__article">
<div class="section-rooms__article--aside">
<div class="section-rooms__locker">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_grey.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_grey.svg" class="section-rooms__icon">
</div>
<div>
<h3>Magic Imporium</h3>
<div class="section-rooms__article--aside__info">
<span><img src="./resources/images/icons/icon_person.svg" class="section-rooms__icon"> 2-3</span>
<span><img src="./resources/images/icons/icon_clock.svg" class="section-rooms__icon"> 60</span>
<span><img src="./resources/images/icons/icon_location.svg" class="section-rooms__icon"> NY 3031</span>
</div>
</div>
<p>
Etiam pulvinar enim nec mi tincidunt, convallis hendrerit ligula interdum. Cras condimentum justo sed nunc cursus, ac euismod sem...
</p>
<div>
<a href="./singleRoom.html" class="button button--red">
Read More
</a>
</div>
</div>
<div class="section-rooms__container-img">
<img src="./resources/images/gallery/slide-2-557x400.jpg" alt="An open door that lets you see the inside of a house in an 1800's atmosphere." class="section-rooms__article__cover">
</div>
</article>
<!-- Second article -->
<article class="section-rooms__article">
<div class="section-rooms__container-img">
<img src="./resources/images/gallery/room-2-557x400.jpg" alt="An open door that lets you see the inside of a house in an 1800's atmosphere." class="section-rooms__article__cover">
</div>
<div class="section-rooms__article--aside">
<div class="section-rooms__locker">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_grey.svg" class="section-rooms__icon">
</div>
<div>
<h3>The Cure</h3>
<div class="section-rooms__article--aside__info">
<span><img src="./resources/images/icons/icon_person.svg" class="section-rooms__icon"> 2-3</span>
<span><img src="./resources/images/icons/icon_clock.svg" class="section-rooms__icon"> 60</span>
<span><img src="./resources/images/icons/icon_location.svg" class="section-rooms__icon"> LA 20198</span>
</div>
</div>
<p>
Etiam pulvinar enim nec mi tincidunt, convallis hendrerit ligula interdum. Cras condimentum justo sed nunc cursus, ac euismod sem...
</p>
<div>
<a href="./singleRoom.html" class="button button--red">
Read More
</a>
</div>
</div>
</article>
<!-- Third article -->
<article class="section-rooms__article">
<div class="section-rooms__article--aside">
<div class="section-rooms__locker">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_red.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_grey.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_grey.svg" class="section-rooms__icon">
<img src="./resources/images/icons/icon_padlock_grey.svg" class="section-rooms__icon">
</div>
<div>
<h3>Burlesque</h3>
<div class="section-rooms__article--aside__info">
<span><img src="./resources/images/icons/icon_person.svg" class="section-rooms__icon"> 3-5</span>
<span><img src="./resources/images/icons/icon_clock.svg" class="section-rooms__icon"> 60</span>
<span><img src="./resources/images/icons/icon_location.svg" class="section-rooms__icon"> BH 90210</span>
</div>
</div>
<p>
Etiam pulvinar enim nec mi tincidunt, convallis hendrerit ligula interdum. Cras condimentum justo sed nunc cursus, ac euismod sem...
</p>
<div>
<a href="./singleRoom.html" class="button button--red">
Read More
</a>
</div>
</div>
<div class="section-rooms__container-img">
<img src="./resources/images/gallery/room-3-557x400.jpg" alt="An open door that lets you see the inside of a house in an 1800's atmosphere." class="section-rooms__article__cover">
</div>
</article>
<a href="#" class="button button--white">View All Rooms</a>
</section>
<!-- HOW IT WORKS -->
<section class="section-works">
<hr>
<h2>How it works</h2>
<ul>
<li>
<img src="./resources/images/icons/icon_padlock_rounded.svg" class="section-works__icon">
<p class="section-works__title">You Are Locked In</p>
<p>You will bring nothing in, but the escape room will be filled with useful and sometimes irrelevant objects.</p>
</li>
<li>
<img src="./resources/images/icons/icon_clock_rounded.svg" class="section-works__icon">
<p class="section-works__title">The Clock Is Ticking…</p>
<p>Can you puzzle your way to the intriguing conclusion and escape the room in 60 minutes?</p>
</li>
<li>
<img src="./resources/images/icons/icon_beat_rounded.svg" class="section-works__icon">
<p class="section-works__title">Feel The Atmosphere</p>
<p>The rooms is built to create an authentic experience with a fun atmosphere, strict attention to detail.</p>
</li>
</ul>
</section>
<!-- TESTIMONIALS -->
<section class="section-testimonials">
<hr>
<h2>Testimonials</h2>
<div class="section-testimonials__content">
<figure>
<blockquote>
<p>
"My family and I had a spectacular experience here and they are above and beyond in customer service and entertainment."
</p>
</blockquote>
<img src="./resources/images/avatars/comment-avatar-1.png">
<figcaption>Aaron</figcaption>
</figure>
<figure>
<blockquote>
<p>
"This place is a blast, especially for groups! I loved seeing how members of different personalities approached the puzzles."
</p>
</blockquote>
<img src="./resources/images/avatars/comment-avatar-2.png">
<figcaption>Tiffany</figcaption>
</figure>
</div>
</section>
<!-- LATEST BLOG POSTS -->
<section class="section-blog">
<hr>
<h2>Latest Blog Posts</h2>
<a href="#" class="section-blog__sub-title">Browse All Blog Posts</a>
<div class="section-blog__content">
<!-- First article -->
<article class="section-blog__article">
<div class="section-blog__article--top">
<img src="./resources/images/gallery/room-9-360x222.jpg" alt="A clock on a table" class="section-blog__article--top__cover">
<div>
<img src="./resources/images/avatars/c3c95c15683498ce1cf96c1a61b662c9.png">
<span class="author-name">Andy Bernard</span>
</div>
</div>
<div class="section-blog__article--bottom">
<span>Promotions</span>
<hr>
<h3>Kidnapped Game Now Open</h3>
<p>Cras eu tristique tellus, sodales elementum turpis. Duis sed rhoncus nulla.... </p>
</div>
</article>
<!-- Second article -->
<article class="section-blog__article">
<div class="section-blog__article--top">
<img src="./resources/images/gallery/room-7-360x222.jpg" alt="A clock on a table" class="section-blog__article--top__cover">
<div>
<img src="./resources/images/avatars/betty-draper.png">
<span class="author-name">Betty Draper</span>
</div>
</div>
<div class="section-blog__article--bottom">
<span>Team cuilding</span>
<hr>
<h3>Perfect for Team Building</h3>
<p>Cras eu tristique tellus, sodales elementum turpis. Duis sed rhoncus nulla. Proin tincidunt, enim in elementum egestas, lectus tortor pellentesque....</p>
</div>
</article>
<!-- Third article -->
<article class="section-blog__article">
<div class="section-blog__article--top">
<img src="./resources/images/gallery/post-img-2-360x222.jpg" alt="A clock on a table" class="section-blog__article--top__cover">
<div>
<img src="./resources/images/avatars/c3c95c15683498ce1cf96c1a61b662c9.png">
<span class="author-name">Andy Bernard</span>
</div>
</div>
<div class="section-blog__article--bottom">
<span>Corporate events</span>
<hr>
<h3>What is an Escape Room?</h3>
<p>Cras eu tristique tellus, sodales elementum turpis. Duis sed rhoncus nulla. Proin tincidunt, enim in elementum.... </p>
</div>
</article>
</div>
</section>
<!-- WHO CAN PLAY -->
<section class="section-who">
<div class="section-who__section-title">
<hr>
<h2>Who can play</h2>
</div>
<ul class="section-who__content">
<li>
<img src="./resources/images/icons/icon_friends_red.svg">
<p>
Friends & Family
</p>
</li>
<li>
<img src="./resources/images/icons/icon_suitcase_red.svg">
<p>
Team & Co-workers
</p>
</li>
<li>
<img src="./resources/images/icons/icon_gamepad_red.svg">
<p>
Game lovers
</p>
</li>
<li>
<img src="./resources/images/icons/icon_plane_red.svg">
<p>
Tourists
</p>
</li>
</ul>
</section>
<!-- INSTAGRAM SHOTS -->
<section class="section-instagram">
<hr>
<h2>Instagram Shots</h2>
<a href="#" class="section-instagram__sub-title">#escapium</a>
<div class="section-instagram__content">
<img src="./resources/images/gallery/gallery-7.jpg" alt="A woman is smilling">
<img src="./resources/images/gallery/gallery-6.jpg" alt="A women is in an empty room">
<img src="./resources/images/gallery/gallery-2.jpg" alt="Someone has a key in her hand">
<img src="./resources/images/gallery/gallery-1.jpg" alt="Some foot">
<img src="./resources/images/gallery/gallery-8.jpg" alt="Some boxes">
<img src="./resources/images/gallery/gallery-4.jpg" alt="Two men are looking at a photo">
<img src="./resources/images/gallery/gallery-5.jpg" alt="Two womens are looking the camera">
<img src="./resources/images/gallery/gallery-3.jpg" alt="An empty room with an open door on the right side">
</div>
<a href="#" class="button button--white"><img src="./resources/images/icons/icon_instagram.svg" class="instagram">Follow on Instagram</a>
</section>
<!-- GET IN TOUCH -->
<section class="section-intouch">
<div class="section-intouch__map">
<iframe src="https://www.google.com/maps/embed?pb=!1m16!1m12!1m3!1d1512.1509011316052!2d-74.00849434172626!3d40.71137219483298!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!2m1!1scity%20hall%20park!5e0!3m2!1sfr!2sbe!4v1667132002979!5m2!1sfr!2sbe" width="950" height="750" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="section-intouch__content">
<hr>
<h2>Get In Touch</h2>
<form action="" method="get" class="section-intouch__form">
<div>
<label for="name" class="hidden">Your Name</label>
<input type="text" name="name" id="name" placeholder="Your name...">
</div>
<div>
<label for="email" class="hidden">Your Email Address</label>
<input type="email" name="email" id="email" placeholder="Your Email Address...">
</div>
<div>
<label for="message" class="hidden">Your Message</label>
<textarea name="message" id="message" placeholder="Your Message..."></textarea>
</div>
<div>
<input type="submit" value="Send Message" class="section-intouch__form--submit">
</div>
</form>
</div>
</section>
<!-- READY FOR THE ESCAPE ? -->
<section class="section-ready">
<hr>
<h2>Ready For The Escape?</h2>
<p>Escape Room gives you the opportunity to have fun</p>
<a href="#" class="button button--red">Book Your Escape</a>
</section>
</main>
<!-----------------------------F O O T E R B Y D A V I D------------------------------------------->
<footer>
<!-- Background Image -->
<div class="footer__bgImage">
<div class="footer__bgImage__image"></div>
<div class="footer__bgImage__color"></div>
</div>
<!-- Top Section - 4 Containers --flexbox -->
<section class="footer__top--flexbox">
<!-- Containers --grid Parent -->
<section class="footer__top__blocs--grid">
<!-- 1st Container - Our Address-->
<article class="footer__top__blocs__ourAddress">
<!-- Index --flexbox -->
<section class="footer__top__blocs__ourAddress__index--flexbox">
<p class="footer__top__blocs__ourAddress__index__no">01</p>
<hr class="footer__top__blocs__index__hr" />
</section>
<!-- Paragraphs --flexbox -->
<section class="footer__top__blocs__ourAddress__container--flexbox">
<h2 class="footer__top__blocs__ourAddress__container__title">
Our Address
</h2>
<!-- Address -->
<p class="footer__top__blocs__ourAddress__container__address">
Escape Room Ltd. <br />
2390 RoadHill St., Suite 100 <br />
North Downtown, NY 82153
</p>
<!-- Contact -->
<p class="footer__top__blocs__ourAddress__container__contacts">
Email: <a href="#">info@escapium.com</a> <br />
Tel: +1800 900 1248
</p>
</section>
</article>
<!-- 2nd Container - Useful Links-->
<article class="footer__top__blocs__usefulLinks">
<!-- Index --flexbox -->
<section class="footer__top__blocs__usefulLinks__index--flexbox">
<p class="footer__top__blocs__usefulLinks__index__no">02</p>
<hr class="footer__top__blocs__index__hr" />
</section>
<!-- Paragraphs -->
<section class="footer__top__blocs__usefulLinks__container">
<h2 class="footer__top__blocs__usefulLinks__container__title">
Useful Links
</h2>
<!-- List -->
<ul class="footer__top__blocs__usefulLinks__container__links">
<li
class="footer__top__blocs__usefulLinks__container__links__about"
>
<p>About</p>
</li>
<li
class="footer__top__blocs__usefulLinks__container__links__gallery"
>
<p>Gallery</p>
</li>
<li
class="footer__top__blocs__usefulLinks__container__links__planAnEvent"
>
<p>Plan an event</p>
</li>
<li
class="footer__top__blocs__usefulLinks__container__links__pricingPackages"
>
<p>Pricing packages</p>
</li>
<li
class="footer__top__blocs__usefulLinks__container__links__faq"
>
<p>FAQ</p>
</li>
<li
class="footer__top__blocs__usefulLinks__container__links__contact"
>
<p>Contact</p>
</li>
</ul>
</section>
</article>
<!-- 3rd Container - Working Hours -->
<article class="footer__top__blocs__workingHours">
<!-- Index --flexbox -->
<section class="footer__top__blocs__workingHours__index--flexbox">
<p class="footer__top__blocs__workingHours__index__no">03</p>
<hr class="footer__top__blocs__index__hr" />
</section>
<!-- Paragraphs -->
<section class="footer__top__blocs__workingHours__container">
<h2 class="footer__top__blocs__workingHours__title">
Working Hours
</h2>
<!-- Shedule --grid Parent -->
<section
class="footer__top__blocs__workingHours__container__shedule--grid"
>
<!-- Days List -->
<ul
class="footer__top__blocs__workingHours__container__shedule__days"
>
<li
class="footer__top__blocs__workingHours__container__shedule__days__monday"
>
<p>Monday:</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__days__tuesday"
>
<p>Tuesday:</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__days__wednesday"
>
<p>Wednesday:</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__days__thursday"
>
<p>Thursday:</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__days__friday"
>
<p>Friday:</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__days__saturday"
>
<p>Saturday:</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__days__sunday"
>
<p>Sunday:</p>
</li>
</ul>
<!-- Hours List -->
<ul
class="footer__top__blocs__workingHours__container__shedule__hours"
>
<li
class="footer__top__blocs__workingHours__container__shedule__hours__monHours"
>
<p>6pm - 11pm</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__hours__tuesHours"
>
<p>5pm - 11pm</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__hours__wednesHours"
>
<p>Closed</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__hours__thursHours"
>
<p>6pm - 11pm</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__hours__friHours"
>
<p>2pm - 11pm</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__hours__saturHours"
>
<p>11am - 9pm</p>
</li>
<li
class="footer__top__blocs__workingHours__container__shedule__hours__sunHours"
>
<p>11am - 9pm</p>
</li>
</ul>
</section>
</section>
</article>
<!-- 4th Container - Social Links -->
<article class="footer__top__blocs__socialLinks">
<!-- Index --flexbox -->
<section class="footer__top__blocs__socialLinks__index--flexbox">
<p class="footer__top__blocs__socialLinks__index__no">04</p>
<hr class="footer__top__blocs__index__hr" />
</section>
<!-- Icons -->
<section class="footer__top__blocs__socialLinks__container">
<h2 class="footer__top__blocs__socialLinks__container__title">
Social Links
</h2>
<!-- Icons --grid Parent -->
<section
class="footer__top__blocs__socialLinks__container__icons--grid"
>
<!-- facebook -->
<a
class="footer__top__blocs__socialLinks__container__icons__facebook"
href="#"
>
<!--<a href="https://www.flaticon.com/fr/icones-gratuites/facebook" title="facebook icônes">Facebook icônes créées par Freepik - Flaticon</a>-->
<img
src="./resources/images/Social Icons/facebook.png"
alt="icon/png"
/>
</a>
<!-- twitter -->
<a
class="footer__top__blocs__socialLinks__container__icons__twitter"
href="#"
>
<!--<a href="https://www.flaticon.com/fr/icones-gratuites/twitter" title="twitter icônes">Twitter icônes créées par Pixel perfect - Flaticon</a>-->
<img
src="./resources/images/Social Icons/twitter.png"
alt="icon/png"
/>
</a>
<!-- instagram -->
<a
class="footer__top__blocs__socialLinks__container__icons__instagram"
href="#"
>
<!--<a href="https://www.flaticon.com/fr/icones-gratuites/instagram" title="instagram icônes">Instagram icônes créées par Freepik - Flaticon</a>-->
<img
src="./resources/images/Social Icons/instagram.png"
alt="icon/png"
/>
</a>
<!-- yelp -->
<a
class="footer__top__blocs__socialLinks__container__icons__yelp"
href="#"
>
<!--<a href="https://www.flaticon.com/free-icons/yelp" title="yelp icons">Yelp icons created by Smashicons - Flaticon</a>-->
<img
src="./resources/images/Social Icons/yelp.png"
alt="icon/png"
/>
</a>
<!-- youtube -->
<a
class="footer__top__blocs__socialLinks__container__icons__youtube"
href="#"
>
<!--<a href="https://www.flaticon.com/free-icons/youtube" title="youtube icons">Youtube icons created by Freepik - Flaticon</a>-->
<img
src="./resources/images/Social Icons/youtube.png"
alt="icon/png"
/>
</a>
<!-- tiktok -->
<a
class="footer__top__blocs__socialLinks__container__icons__tiktok"
href="#"
>
<!--<a href="https://www.flaticon.com/free-icons/tiktok" title="tiktok icons">Tiktok icons created by Freepik - Flaticon</a>-->
<img
src="./resources/images/Social Icons/tik-tok.png"
alt="icon/png"
/>
</a>
</section>
</section>
</article>
</section>
</section>
<!-- Bottom Section - Logo -->
<section class="footer__bot--flexbox">
<!-- Logo -->
<section class="footer__bot__container--flexbox">
<img
class="footer__bot__container__logo"
src="./resources/images/logo/footer-logo.png"
alt="logo/png"
/>
<!-- Copyright -->
<a class="footer__bot__container__copyright" href="#"
>Copyright © 2022 Escapium | All Right Reserved</a
>
</section>
</section>
</footer>
<script src="./resources/js/index.js"></script>
</body>
</html>