-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1017 lines (1009 loc) · 36.6 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
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Puerto Morelos Vacation Rental</title>
<!-- favicon -->
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon" />
<!-- font-awesome -->
<link
rel="stylesheet"
href="./fontawesome-free-6.4.0-web/css/all.min.css"
/>
<!-- styles css -->
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<!-- header -->
<header id="home">
<!-- navbar -->
<nav class="navbar">
<div class="nav-center">
<!-- nav header -->
<div class="nav-header">
<a href="#home">
<img
src="./images/palmares-203-resized.svg"
class="nav-logo"
alt="palmares 203 logo"
/>
</a>
<button type="button" class="nav-toggle" id="nav-toggle">
<i class="fa-solid fa-bars"></i>
</button>
</div>
<!-- end of nav header -->
<!-- nav links -->
<ul class="nav-links" id="nav-links">
<!-- nav link -->
<li>
<a href="#home" class="nav-link scroll-link">home</a>
</li>
<!-- end of nav link -->
<!-- nav link -->
<li>
<a href="#sleep" class="nav-link scroll-link">sleep</a>
</li>
<!-- end of nav link -->
<!-- nav link -->
<li>
<a href="#activities" class="nav-link scroll-link">play</a>
</li>
<!-- end of nav link -->
<!-- nav link -->
<li>
<a href="#eat" class="nav-link scroll-link">eat</a>
</li>
<!-- end of nav link -->
<!-- nav link -->
<li>
<a href="#book" class="nav-link scroll-link">book</a>
</li>
<!-- end of nav link -->
</ul>
<!-- end of nav links -->
<!-- nav icon -->
<div class="nav-icons">
<a
href="https://www.airbnb.com/rooms/589684916167853690?guests=1&adults=1&s=67&unique_share_id=169eed4a-7224-4ac5-a17c-a0170fe67904"
target="_blank"
class="nav-icon"
>
<i class="fab fa-airbnb" class="nav-icon"></i>
<span class="nav-tooltiptext">Check availability</span>
</a>
</div>
<!-- end of nav icon -->
<!-- end of nav header -->
</div>
</nav>
<!-- hero -->
<div class="hero">
<div class="hero-banner">
<h1>vacation in puerto morelos</h1>
<p>
Live by the beach and explore one of the jewels of the Riviera Maya
where you'll discover the many wonders of the Mayan world.
</p>
<a href="#about-pm" class="btn hero-btn scroll-link">learn more</a>
</div>
</div>
</header>
<!-- end of header -->
<!-- about section -->
<section class="section" id="about-pm">
<!-- section title -->
<div class="section-title">
<h2>about <span>Puerto Morelos</span></h2>
</div>
<!-- end of section title -->
<div class="section-center about-center">
<!-- about img wrapper -->
<article class="about-img">
<img
src="./images/about-pm.jpeg"
alt="puerto morelos"
class="about-photo"
/>
</article>
<!-- about info -->
<article class="about-info">
<h3>explore puerto morelos</h3>
<p>
Puerto Morelos is a Mexican port town on the Caribbean coast of the
Yucatán Peninsula. It is between the Riviera Maya resorts of Cancun
and Playa del Carmen, but retains some of its original fishing
village character. To get here, simply fly into Cancun and take a 20
minute car ride to Puerto Morelos.
</p>
<p>
The Puerto Morelos Reef National Park has many offshore dive and
snorkeling sites. Along the Ruta de los Cenotes are freshwater
sinkholes known as cenotes, including our favorites: Siete Bocas,
Zapote, Maravilla, Verde Lucero, La Noria and Popul Vuh.
</p>
<a
class="btn"
href="https://en.wikipedia.org/wiki/Puerto_Morelos"
target="_blank"
>read more</a
>
</article>
</div>
</section>
<!-- end of about section -->
<!-- services -->
<section class="section services" id="sleep">
<!-- section title -->
<div class="section-title">
<h2>where you'll <span>stay</span></h2>
</div>
<!-- end of section title -->
<div class="section-center services-center">
<!-- single service -->
<article class="service">
<span class="service-icon">
<i class="fa-solid fa-umbrella-beach fa-fw"></i>
</span>
<div class="service-info">
<h4 class="service-title">beachfront</h4>
<p class="service-text">
Located across from the beach and two blocks from the town center,
this one-bedroom, one bath apartment is perfect for two guests.
</p>
</div>
</article>
<!-- end of single service -->
<!-- single service -->
<article class="service">
<span class="service-icon">
<i class="fa-solid fa-unlock fa-fw"></i>
</span>
<div class="service-info">
<h4 class="service-title">self check-in</h4>
<p class="service-text">
Secure lockbox with keys allows guests to check-in and out on
their own. Combination and additional details will be provided
upon booking.
</p>
</div>
</article>
<!-- end of single service -->
<!-- single service -->
<article class="service">
<span class="service-icon">
<i class="fa-solid fa-wifi fa-fw"></i>
</span>
<div class="service-info">
<h4 class="service-title">dedicated workspace</h4>
<p class="service-text">
Collapsible work desk with blazing fast fiber-optic wifi (up to
500Mbps) allows reliable internet access, streaming and video
conferencing.
</p>
</div>
</article>
<!-- end of single service -->
<!-- single service -->
<article class="service">
<span class="service-icon">
<i class="fa-solid fa-swimmer fa-fw"></i>
</span>
<div class="service-info">
<h4 class="service-title">outdoor pool</h4>
<p class="service-text">
Cool off and relax before a night out in the town in the shared
rooftop outdoor pool that is overlooking the sea. Available
year-round.
</p>
</div>
</article>
<!-- end of single service -->
</div>
</section>
<!--end services -->
<!-- gallery of apartnment pics -->
<section>
<!-- section title -->
<div class="section-title gallery-title">
<h2>the <span>apartment</span></h2>
</div>
<!-- end of section title -->
<div class="gallery-center">
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/pool.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img
src="./images/palmares-building.jpeg"
alt="pool"
class="gallery-img"
/>
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img
src="./images/palmares-hallway.jpeg"
alt="pool"
class="gallery-img"
/>
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/802-enter.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/tv-area.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/workspace.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/bedroom.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/bedroom2.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/kitchen.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/bathroom.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/shower.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
<!-- single image -->
<article class="gallery-img-container">
<img src="./images/laundry.jpeg" alt="pool" class="gallery-img" />
</article>
<!-- end of single image -->
</div>
</section>
<!-- end of gallery of apartment pics-->
<!-- featured activities -->
<section class="section" id="activities">
<!-- section title -->
<div class="section-title">
<h2>featured <span>activities</span></h2>
</div>
<!-- end of section title -->
<!-- featured center -->
<div class="section-center featured-center">
<!-- first activity -->
<article class="activity-card">
<div class="activity-img-container">
<img
src="./images/diver-turtle.jpeg"
alt="diver with turtle"
class="activity-img"
/>
<p class="activity-caption">source: omdelfin</p>
</div>
<!-- activity info -->
<div class="activity-info">
<div class="activity-title">
<span class="activity-icon"
><i class="fa-solid fa-fish"></i>
</span>
<h4>scuba diving tours</h4>
</div>
<p>
Puerto Morelos is home to the best preserved section of the
Mesoamerican Barrier Reef. This part of the second largest barrier
reef in the world is also closer to land in Puerto Morelos than
anywhere else in Mexico. You can't miss diving and snorkeling in
Puerto Morelos! Courses, dive and snorkeling tour packages
available at OmDelfin.
</p>
<div class="activity-footer">
<p>
Learn More:
<a
href="https://omdelfin.com/"
alt="OmDelfin Dive Shop"
target="_blank"
>Dive Shop OmDelfin</a
>
</p>
<p>from $90</p>
</div>
</div>
</article>
<!-- end of first activity -->
<!-- second activity -->
<article class="activity-card">
<div class="activity-img-container">
<img
src="./images/cenote-tour.jpeg"
alt="cenote"
class="activity-img"
/>
<p class="activity-caption">source: layla guesthouse</p>
</div>
<!-- activity info -->
<div class="activity-info">
<div class="activity-title">
<span class="activity-icon"
><i class="fa-solid fa-binoculars"></i
></span>
<h4>jungle and cenote tours</h4>
</div>
<p>
The explorer in you can't miss enyoying the various cenotes, which
are fresh water sinkholes found in the middle of the jungle. Along
the Ruta de los Cenotes you can find a variety of cenotes that are
both completely open, semi-open or in a cavern. Join the Layla
Guesthouse Mayan Experience Cenote tour for a once in a lifetime
jungle and cenote experience.
</p>
<div class="activity-footer">
<p>
Learn more:
<a
href="https://laylaguesthouse.com/cenote-tour/"
alt="Layla gueshouse cenote tour"
target="_blank"
>Layla Guesthouse</a
>
</p>
<p>from $120</p>
</div>
</div>
</article>
<!-- end of second activity -->
<!-- third activity -->
<article class="activity-card">
<div class="activity-img-container">
<img
src="./images/koox-ich-cool.jpeg"
alt="activity image"
class="activity-img"
/>
<p class="activity-caption">source: kookichcool</p>
</div>
<!-- activity info -->
<div class="activity-info">
<div class="activity-title">
<span class="activity-icon"
><i class="fa-solid fa-utensils"></i
></span>
<h4>organic mexican food</h4>
</div>
<p>
Koox Ich Kool is an organic experience along the Ruta de los
Cenotes. Hosted by chef Karla Romo on her organic farm, she
prepares a 6-course buffet meal using the finest local and organic
ingredients along with a selection of mezcal and wine from Valle
de Guadalupe. You'll also tour the orchard, the jungle and enjoy
the water of the cenote pool.
</p>
<div class="activity-footer">
<p>
Learn More:
<a
href="https://www.facebook.com/kooxichkool"
alt="koox ich cool"
target="_blank"
>Koox Ich Kool</a
>
</p>
<p>Contact for info</p>
</div>
</div>
</article>
<!-- end of third activity -->
<!-- fourth activity -->
<article class="activity-card">
<div class="activity-img-container">
<img
src="./images/beach.jpeg"
alt="activity image"
class="activity-img"
/>
<p class="activity-caption">source: Pexels</p>
</div>
<!-- activity info -->
<div class="activity-info">
<div class="activity-title">
<span class="activity-icon"
><i class="fa-solid fa-umbrella-beach"></i
></span>
<h4>Beach Clubs</h4>
</div>
<p>
Puerto Morelos has numerous beach clubs and the cost to rent a
chair is very affordable. Although you can just bring your towel
and lounge around for free, having a drink, food and a relaxing
chair is worth it. Among our favorites include Hotel Ojo de Agua
beach club, My Paradise, Don Ernesto's and the Diving Lodge.
</p>
<div class="activity-footer">
<p>
learn more:
<a
href="https://www.google.com/"
alt="beach clubs"
target="_blank"
>search google</a
>
</p>
<p>from $10</p>
</div>
</div>
</article>
<!-- end of fourth activity -->
<!-- fifth activity -->
<article class="activity-card">
<div class="activity-img-container">
<img
src="./images/los-colibres.jpeg"
alt="activity image"
class="activity-img"
/>
<p class="activity-caption">source: Los Colibries</p>
</div>
<!-- activity info -->
<div class="activity-info">
<div class="activity-title">
<span class="activity-icon"><i class="fa-solid fa-spa"></i></span>
<h4>Mayan Jungle Spa</h4>
</div>
<p>
Los Colibries is a unique Mayan jungle spa along the Ruta de los
Cenotes. The spa offers an exotic environment, surrounded by
hundreds of trees, tropical plants, and birds. Their expert
massage therapists provide traditional mayan massages, an outdoor
bath all with natural oils. You'll have the most relaxing
experience, guaranteed!
</p>
<div class="activity-footer">
<p>
learn more:
<a
href="https://loscolibries.mx/"
alt="jungle spa"
target="_blank"
>Los Colibres</a
>
</p>
<p>from $50</p>
</div>
</div>
</article>
<!-- end of fifth activity -->
<!-- sixth activity -->
<article class="activity-card">
<div class="activity-img-container">
<img
src="./images/live-music.jpg"
alt="activity image"
class="activity-img"
/>
<p class="activity-caption">source: Pexels</p>
</div>
<!-- activity info -->
<div class="activity-info">
<div class="activity-title">
<span class="activity-icon"
><i class="fa-solid fa-guitar"></i
></span>
<h4>live music</h4>
</div>
<p>
You'll find numerous street musicians and live bands performing in
and out of the various restaurants along Puerto Morelos' beach
side. From traditional mariachi to rock and roll and even karaoke,
you'll surely find very entertaining music. Just do a Google
search of live music in Puerto Morelos to get the latest
information.
</p>
<div class="activity-footer">
<p>
learn more:
<a
href="https://www.google.com/search?q=best+live+music+in+puerto+morelos&source=lmns&bih=969&biw=1920&hl=en&sa=X&ved=2ahUKEwiVyfbl__D9AhVeL94AHU9UDMoQ_AUoAHoECAEQAA"
alt="google search"
target="_blank"
>search google</a
>
</p>
<p>inquire at venue</p>
</div>
</div>
</article>
<!-- end of sixth activity -->
</div>
</section>
<!-- end of featured activities -->
<!-- food section -->
<section class="section food" id="eat">
<!-- section title -->
<div class="section-title">
<h2>nearby <span>eats</span></h2>
</div>
<!-- end of section title -->
<div class="section-center food-center">
<!-- single food list -->
<article class="food">
<span class="food-icon">
<i class="fa-solid fa-coffee fa-fw"></i>
</span>
<div class="food-info">
<h3 class="service-title">cafes</h3>
<ul class="food-list">
<li class="food-link">
<a
href="https://www.facebook.com/groups/463890004516990/posts/702000470705941/"
target="_blank"
a
>Belleville Panaderia</a
>
</li>
<li class="food-link">
<a
href="https://www.google.com/search?q=cafe+amancia+puerto+morelos&tbm=lcl&sxsrf=AJOqlzWrrNmeXq2MqZazSHA984nfDEsAiA%3A1679425494389&ei=1v8ZZIWqF-7HkPIPy6S_qA8&oq=cafe+amancia&gs_lcp=Cg1nd3Mtd2l6LWxvY2FsEAMYADIKCAAQgAQQFBCHAjIFCAAQgAQyBggAEBYQHjICCCY6BAgjECc6BAgAEEM6BQgAEJECUABY-w1gnxhoAHAAeAKAAfsDiAHMGJIBCzAuMi41LjIuMS4xmAEAoAEBwAEB&sclient=gws-wiz-local"
target="_blank"
a
>Cafe Amancia</a
>
</li>
<li class="food-link">
<a
href="https://laylaguesthouse.com/es/cafe-layla-menu/"
target="_blank"
a
>Cafe Layla</a
>
</li>
<li class="food-link"></li>
<li class="food-link">
<a
href="https://www.tripadvisor.com/Restaurant_Review-g240327-d23727568-Reviews-Cecilia_Bakes_Coffee_Shop-Puerto_Morelos_Yucatan_Peninsula.html"
target="_blank"
a
>Cecilia Bakes</a
>
</li>
<li class="food-link">
<a href="https://pm.eliniciorestaurante.com/" target="_blank" a
>El Inicio</a
>
</li>
<li class="food-link">
<a
href="https://www.google.com/search?q=oneida%20cafe%20puerto%20morelos&oq=oneida+cafe+puerto+&aqs=chrome.1.69i57j33i160l2.7684j0j4&sourceid=chrome&ie=UTF-8&tbs=lf:1,lf_ui:9&tbm=lcl&sxsrf=AJOqlzVj4mMUDrbRNVXH9IExd6_X0ilrUg:1679427415137&rflfq=1&num=10&rldimm=17498560580722829126&lqi=ChpvbmVpZGEgY2FmZSBwdWVydG8gbW9yZWxvc0i45JPZg6-AgAhaJhAAEAEYASIab25laWRhIGNhZmUgcHVlcnRvIG1vcmVsb3MyAmVzkgEEY2FmZZoBI0NoWkRTVWhOTUc5blMwVkpRMEZuU1VOQ09IVmZjMEYzRUFFqgE_CgkvbS8wMjBmYjIQASoPIgtvbmVpZGEgY2FmZSgOMh8QASIbgoV4PA3WGqQdX-bucgOUhzTOif14eeiDLw-I&phdesc=4hPtMr2WH8M&ved=2ahUKEwj1j4XU4u39AhUxLkQIHaqiBMQQvS56BAgYEAE&sa=X&rlst=f#rlfi=hd:;si:17498560580722829126,l,ChpvbmVpZGEgY2FmZSBwdWVydG8gbW9yZWxvc0i45JPZg6-AgAhaJhAAEAEYASIab25laWRhIGNhZmUgcHVlcnRvIG1vcmVsb3MyAmVzkgEEY2FmZZoBI0NoWkRTVWhOTUc5blMwVkpRMEZuU1VOQ09IVmZjMEYzRUFFqgE_CgkvbS8wMjBmYjIQASoPIgtvbmVpZGEgY2FmZSgOMh8QASIbgoV4PA3WGqQdX-bucgOUhzTOif14eeiDLw-I,y,4hPtMr2WH8M;mv:[[20.8748708,-86.87257199999999],[20.831762599999998,-86.9025786]];tbs:lrf:!1m4!1u3!2m2!3m1!1e1!1m4!1u2!2m2!2m1!1e1!2m1!1e2!2m1!1e3!2m4!1e17!4m2!17m1!1e2!3sIAE,lf:1,lf_ui:9"
target="_blank"
a
>Eneida Cafe</a
>
</li>
<li class="food-link">
<a href="https://www.estacion69.com/" target="_blank" a
>Estacion 69</a
>
</li>
<li class="food-link">
<a
href="https://localcofffeshop.wordpress.com/"
target="_blank"
a
>Local Coffee Shop</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/lolaymoya/?locale=es_LA"
target="_blank"
a
>Lola Y Moya</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/mangatapuertomorelos"
target="_blank"
a
>Mangata</a
>
</li>
</ul>
</div>
</article>
<!-- end of single food list -->
<!-- single food list 2 -->
<article class="food">
<span class="food-icon">
<i class="fa-solid fa-pepper-hot fa-fw"></i>
</span>
<div class="food-info">
<h3 class="service-title">tacos</h3>
<ul class="food-list">
<li class="food-link">
<a href="https://www.facebook.com/ElNichoPM/" target="_blank" a
>El Nicho</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/profile.php?id=100063548470071"
target="_blank"
a
>La Cabaña</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/lachozadelpuerto/"
target="_blank"
a
>La Choza</a
>
</li>
<li class="food-link">
<a
href="https://www.tripadvisor.com/Restaurant_Review-g240327-d12396192-Reviews-Las_Koras-Puerto_Morelos_Yucatan_Peninsula.html"
target="_blank"
a
>Las Koras</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/pecaofondademar/"
target="_blank"
a
>Pecao</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/SocioNaizPuertoMorelos/"
target="_blank"
a
>Socio Naiz</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/profile.php?id=100063965113592"
target="_blank"
a
>taco.com</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/people/Taquer%C3%ADa-El-Mariachi/100063789630051/?paipv=0&eav=Afaeu87_REEGhYUlNEP5RqHoJ103i2t7_j4vS2qpJHM_Mj88n0uPce6pGdPnfih0FFA&_rdr"
target="_blank"
a
>Taqueria El Mariachi</a
>
</li>
<li class="food-link">
<a
href="https://www.tripadvisor.com/Restaurant_Review-g240327-d16738846-Reviews-Taqueria_Neza-Puerto_Morelos_Yucatan_Peninsula.html"
target="_blank"
a
>Taqueria Neza</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/VeggieVeggieStreetFood"
target="_blank"
a
>Veggie Veggie Street Food</a
>
</li>
</ul>
</div>
</article>
<!-- end of single food item -->
<!-- single food list 3 -->
<article class="food">
<span class="food-icon">
<i class="fa-solid fa-bowl-food"></i>
</span>
<div class="food-info">
<h3 class="service-title">international</h3>
<ul class="food-list food-international">
<li class="food-link">
<a
href="https://www.facebook.com/Daipuertomorelos/?locale=es_LA"
target="_blank"
a
>Dai Smokehouse and Sake</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/doragonrestaurantejapones"
target="_blank"
a
>Doragon Sushi</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/groups/463890004516990/posts/702000470705941/"
target="_blank"
a
>El Campanario</a
>
</li>
<li class="food-link">
<a
href="https://www.tripadvisor.com.mx/Restaurant_Review-g240327-d1051278-Reviews-El_Pirata-Puerto_Morelos_Yucatan_Peninsula.html"
target="_blank"
a
>El Pirata</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/ruta40puertomorelos/"
target="_blank"
a
>Empanadas Ruta 40</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/iwannapizza/"
target="_blank"
a
>I Wanna Pizza</a
>
</li>
<li class="food-link">
<a href="https://www.memalmare.com/" target="_blank" a
>Mem Al Mare</a
>
</li>
<li class="food-link">
<a href="https://www.osteriabarocca.com/" target="_blank" a
>Osteria Barocca</a
>
</li>
<li class="food-link">
<a href="https://taninosrestaurant.com/" target="_blank" a
>Tanino's</a
>
</li>
<li class="food-link">
<a
href="https://restaurantesenpuertomorelos.com/establecimiento/yum-yum-wok/"
target="_blank"
a
>Yum Yum Wok</a
>
</li>
</ul>
</div>
</article>
<!-- end of single food list 3 -->
<!-- single food list 4 -->
<article class="food">
<span class="food-icon">
<i class="fa-solid fa-fish-fins"></i>
</span>
<div class="food-info">
<h3 class="service-title">seafood</h3>
<ul class="food-list food-international">
<li class="food-link">
<a
href="https://www.facebook.com/BLUE.MORELOS/?locale=es_LA"
target="_blank"
a
>Blue</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/BoquinetePuerto/"
target="_blank"
a
>Boquinete Seafood & Grill</a
>
</li>
<li class="food-link">
<a
href="https://www.facebook.com/elpesqueropuertomorelos/reviews"
target="_blank"
a
>El Pesquero</a
>
</li>
<li class="food-link">
<a href="https://lasirenapm.com/" target="_blank" a
>La Sirena</a
>
</li>
<li class="food-link">
<a href="http://muelleonce.com/" target="_blank" a
>Muelle Once</a
>
</li>
<li class="food-link">
<a href="https://playajaguar.com/inicio/" target="_blank" a
>Playa Jaguar</a
>
</li>
<li class="food-link">
<a href="https://bullandtank.com/punta-corcho" target="_blank" a
>Punta Corcho</a
>
</li>
</ul>
</div>
</article>
<!-- end of single food list 4 -->
</div>
</section>
<!-- end of food section -->
<!-- book -->
<section class="section-center book" id="book">
<!-- contact host info -->
<article class="your-hosts">
<h3>
Your Hosts: <br />
<h4 class="your-hosts-title">
<span>Generosa Litton and Leslie Marder</span>
</h4>
</h3>
<div class="your-hosts-text">
<img
src="./images/GLeslie.jpg"
alt="Generosa Litton and Leslie Marder"
class="your-hosts-img"
/>
<p>
Originally from San Francisco, California, Generosa Litton and
Leslie Marder have been visiting Puerto Morelos since 2017. In 2021,
we and our kitties, Django and Luna made Palmares 203 our first home
in Puerto Morelos. We look forward to hosting you and sharing the
wonders that this town has to offer.
</p>
</div>
</article>
<article class="location">
<h3>Location</h3>
<div class="location-info">
<img src="./images/palmares-map.png" alt="palmares 203 google maps" />
<p>
Palmares 203 is located on Avenida Rafael Melgar on the port side
(beach) of Puerto Morelos. It is on the same street as Layla
Guesthouse and across from the Secondaria school. We recommend using
<a href="https://www.usa-transfers.com/" target="_blank"
>USA Transfers</a
>
to get here from Cancun airport. Just provide "Layla Guesthouse" as
the destination and inform the driver to drive about 300 feet more
where you'll see a white building with a sign Palmares 8-02 to the
right of the entrance.
</p>
</div>
</article>
<!-- contact container-->
<article class="contact">
<h3>ready to book?</h3>
<p>
click the airbnb icon to book now
<a
href="https://www.airbnb.com/rooms/589684916167853690?guests=1&adults=1&s=67&unique_share_id=169eed4a-7224-4ac5-a17c-a0170fe67904"
target="_blank"
class="booking-icon"
>
<i class="fab fa-airbnb"></i>
</a>
</p>
<!-- contact form -->
<div class="contact-form">
<h3>have questions? contact us</h3>
<form
action="https://formspree.io/f/myyanbgk"
method="POST"
class="form-group"
>
<input
type="email"
name="email"
placeholder="YOUR EMAIL"
class="form-control"
/>
<textarea
name="message"
placeholder="YOUR MESSAGE"
rows="8"
class="form-control"
></textarea>
<!-- submit button -->
<button type="submit" class="btn-submit">submit</button>
</form>
</div>
<!-- <div class="form-submit">
<h3 class="'form-submit-thanks">
Thank you for your message. We will respond to your inquiry within
24 hours.
</h3>
</div> -->
</article>
</section>
<!-- end of book -->
<!-- footer -->
<footer class="section footer">
<!-- footer links -->
<ul class="footer-links">
<!-- single link -->
<li>
<a href="#home" class="footer-link scroll-link">home</a>
</li>
<!-- end of single link -->
<!-- single link -->
<li>
<a href="#sleep" class="footer-link scroll-link">sleep</a>
</li>
<!-- end of single link -->
<!-- single link -->
<li>
<a href="#activities" class="footer-link scroll-link">play</a>
</li>
<!-- end of single link -->
<!-- single link -->
<li>
<a href="#eat" class="footer-link scroll-link">eat</a>
</li>
<!-- end of single link -->
<!-- single link -->
<li>
<a href="#book" class="footer-link scroll-link">book</a>
</li>
<!-- end of single link -->
</ul>
<!-- end of footer links -->
<!-- footer icons -->
<!-- <ul class="footer-icons"> -->
<!-- single icon -->
<!-- <li>
<a
href="https://www.airbnb.com/rooms/589684916167853690?guests=1&adults=1&s=67&unique_share_id=169eed4a-7224-4ac5-a17c-a0170fe67904"