-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
2038 lines (1942 loc) · 97.6 KB
/
demo.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>
<title>LAZAN</title>
<link rel="stylesheet" href="css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="script/javascript/javascr.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <!-- Google -->
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js"></script> <!-- Microsoft -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script>
<!--modals-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--jQuery -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ HEADER ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<header>
<div class="col-7 col-s-12">
<a href="index.html"> <img src="img/logo.png" alt="Logo Nia Mondo" id="logo"></a>
</div>
<div class="col-5 col-s-12">
<ul id="reglog">
<li id="menu"> <a href="#index"> Inicio </a> </li>
<li id="menu"> <a href="#demo">Demo</a> </li>
<li id="menu"> <a href="#team">Equipo</a> </li>
</ul>
</div>
</header>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ NAVIGATION BAR ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div id="navigationbar">
<ul id="navigation">
<li><a class="btns active" onclick="displayHome()" href="#Home">Home</a></li>
<li><a class="btns" onclick="displaySearch()" href="#Search">Search</a></li>
<li><a class="btns" onclick="displayHotels()" href="#Hotels">Hotels</a></li>
<li><a class="btns" onclick="displayExperiences()" href="#Experiences">Experiences</a></li>
</ul>
</div>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ SEARCH ENGINE AND PARAMETERS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div id="searchBoxHotels">
<div id="searchEngine" class="row-edit">
<form name="searchFormHotels">
<div class="search-container">
<input type="text" placeholder="Search..." name="search" id="searchInputHotels" autocomplete="off">
<button type="submit" onclick="searchResultsHotels()"><i class="fa fa-search"></i></button>
</div>
<div class="searchParameters">
<label><b>Check-in date: </b></label>
<input class="col-10" type="date" name="date1" required><br>
</div>
<div class="searchParameters">
<label><b>Check-out date: </b></label>
<input class="col-10" type="date" name="date2" required><br>
</div>
<div class="searchParameters">
<label><b>Keywords: </b></label>
<input class="col-10" type="text" name="keyword" required><br>
</div>
<div class="searchParameters" style="height:85.433px">
<label><b>Price range: </b></label>
<input type="range" name="price" id="priceInput" min="0" max="300" step="5" value="100" oninput="priceOutput.value = priceInput.value">
<output name="priceOutput" id="priceOutput">100</output>
</div>
<div class="smallSearchParameters">
<label><b>Adults: </b></label>
<select class="f1to30"></select>
</div>
<div class="smallSearchParameters">
<label><b>Children: </b></label>
<select class="f0to30"></select>
</div>
<div class="smallSearchParameters">
<label><b>Rooms: </b></label>
<select class="f1to15"></select>
</div>
</form>
</div>
</div>
<div id="searchBoxExperiences">
<div id="searchEngine" class="row-edit">
<form name="searchFormExperiences">
<div class="search-container">
<input type="text" placeholder="Search..." name="search" id="searchInputExperiences" autocomplete="off">
<button type="submit" onclick="searchResultsExperiences()"><i class="fa fa-search"></i></button>
</div>
<div class="searchParameters">
<label><b>Date: </b></label>
<input class="col-10" type="date" name="date1" required><br>
</div>
<div class="searchParameters">
<label><b>Keywords: </b></label>
<input class="col-10" type="text" name="keyword" required><br>
</div>
<div class="searchParameters" style="height:85.433px">
<label><b>Price range: </b></label>
<input type="range" name="price" id="priceInput" min="0" max="300" step="5" value="100" oninput="priceOutput.value = priceInput.value">
<output name="priceOutput" id="priceOutput">100</output>
</div>
<div class="smallSearchParameters">
<input type="checkbox" name="typeEx1" class="check" value="Family" checked> Family<br>
<input type="checkbox" name="typeEx2" class="check" value="Couple"> Couple<br>
<input type="checkbox" name="typeEx3" class="check" value="Adventure"> Adventure<br>
<input type="checkbox" name="typeEx4" class="check" value="Nature"> Nature<br><br>
</div>
<div id="participantSearchParameters">
<label><b>Participants: </b></label>
<select class="f1to15Group"></select>
</div>
</form>
</div>
</div>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ARTICLE ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="row-edit">
<article>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GALLERY ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="Gcontainer" id="mixedSlider">
<h1> Explore places:</h1><br><br><br><br>
<div class="MS-content">
<div class="item">
<div class="imgTitle">
<h2 class="blogTitle">Ilunion Atrium</h2>
<img src="images/hotel1.png" alt=""/>
</div>
<p>Ilunion Atrium in Madrid, Spain is a 4-star hotel located in the city, but also close to the airport. The
hotel has free wifi and a restaurant.</p>
<a href="#" onclick="displayIlunion()">Read More</a>
</div>
<div class="item">
<div class="imgTitle">
<h2 class="blogTitle">Fellina</h2>
<img src="images/restaurante1.png" alt="" />
</div>
<p>Fellina is a tradicional italian restaurant located in Chamberi. They serve homemade pasta and fried pizza, a
classic from Napoli.</p>
<a href="#" onclick="displayFellina()">Read More</a>
</div>
<div class="item">
<div class="imgTitle">
<h2 class="blogTitle">Retiro Park</h2>
<img src="images/parque1.png" alt="" />
</div>
<p>The Retiro park is a nice, gigantic park very close to the center of Madrid. Has many playgrounds for children
and street performers. </p>
<a href="#" onclick="displayRetiro()">Read More</a>
</div>
<div class="item">
<div class="imgTitle">
<h2 class="blogTitle">Hotel Francisco I</h2>
<img src="images/hotel2.png" alt="" />
</div>
<p>Francisco I is a modern, very comfortable hotel in the center of the city. Most bedrooms have terraces with
fantastic views.</p>
<a href="#" onclick="displayFrancisco()">Read More</a>
</div>
<div class="item">
<div class="imgTitle">
<h2 class="blogTitle">Cocina Arcoirirs</h2>
<img src="images/restaurante2.png" alt="" />
</div>
<p>Cool restaurant adapted to vegans, lactose, and gluten intolerants. Homemade food, always with a vegie side
dish, and dishes with an exotic turn!</p>
<a href="#" onclick="displayCocina()">Read More</a>
</div>
</div>
<div class="MS-controls">
<button class="MS-left"><i class="fa fa-angle-left" aria-hidden="true"></i></button>
<button class="MS-right"><i class="fa fa-angle-right" aria-hidden="true"></i></button>
</div>
</div>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ HOTEL INFO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="establishmentInfo" id="establishmentInfo">
<!-- ILUNION ATRIUM -->
<div class="moreInfo" id="ilunionInfo">
<div class="establishmentHeader">
<div class="establishmentPic"><img src="images/hotel1.png" alt="" id="imageIlunion"/></div>
<div class="establishmentDetails">
<h2>Ilunion Atrium</h2>
<p>Overall score: <img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/media.png" alt="star" class="services"></p>
<p id="locationIlunion">Location: Calle de Emilio Vargas, 3-5, Madrid, Spain</p>
<p>Click <b><u><a href="https://www.ilunionhotels.com/hotel-ilunion-atrium-en-madrid/">here</a></b></u> to visit
their website.</p>
</div>
<div class="establishmentOptions">
<button type="button" class="reservationButton" onclick="reservationIlunion()">Make a reservation</button><br>
<button type="button" class="reviewButton" onclick="reviewIlunion()">Write a review</button>
</div>
</div>
<div class="establishmentOpinions">
<div class="opinion">
<h3>Opinion by @johnadams</h3>
<p>This hotel is inside the city but relatively close to the airport, a 10 min ride.
There is a short commute to the center of the city. The hotel has many facilities
available for the clients, such as a swimming pool, a gym, a relaxing area, a
restaurant, as well as free wifi connection.</p>
</div>
<div class="opinion">
<h3>Opinion by @juliaevans</h3>
<p>nice hotel, location and transportation very easy, local restaurant are easy to get
to and you can seat along the beaches all day relaxing.Nice breakfast and friendly
staff and answered all questions by making efforts to communicate in English. You
can rent a bike at the hotel but to a high price! The hotel was excelent, but a primitive gym. </p>
</div>
<div class="opinion">
<h3>Opinion by @faridwanis</h3>
<p>Hotel is really nice (I don't get why it's considered two stars). Location is great, you can walk
to major attractions and have an easy access to subway. Rooms are clean and organized. Reception
is polite. Downsides are the room design (bathroom has a slide door which is never really closed)
and breakfast that is quite expensive in my opinion.</p>
</div>
</div>
</div>
<!-- FELLINA -->
<div class="moreInfo" id="fellinaInfo">
<div class="establishmentHeader">
<div class="establishmentPic"><img src="images/restaurante1.png" alt="" id="imageFellina"/></div>
<div class="establishmentDetails">
<h2>Fellina</h2>
<p>Overall score: <img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/vacia.png" alt="star" class="services"></p>
<p id="locationFellina">Location: Calle de Caracas, 21, 28010 Madrid</p>
<p>Click <b><u><a href="https://www.tripadvisor.es/Restaurant_Review-g187514-d12934099-Reviews-Fellina-Madrid.html">here</a></b></u>
to visit their website.</p>
</div>
<div class="establishmentOptions">
<button type="button" class="reservationButton" onclick="reservationFellina()">Make a reservation</button><br>
<button type="button" class="reviewButton" onclick="reviewFellina()">Write a review</button>
</div>
</div>
<div class="establishmentOpinions">
<div class="opinion">
<h3>Opinion by @karensmith</h3>
<p>My favorite Italian restaurant in Madrid. Excellent food. Real Italian cooking and ingredients.
Very fresh. Great atmosphere. Authentic and awesome. Pasta is wonderful, great charcuterie appetizers,
and breads. Highly recommended. Staff are really friendly and the terrace is pleasantly decorated.
However, the food is not up to standards.</p>
</div>
<div class="opinion">
<h3>Opinion by @miguelmesa</h3>
<p>Staff are really friendly and the terrace is pleasantly decorated. However, the food is not up to standards.
Both risotto and a pasta dish were too cooked. Also we didn't have a good digestion. A thing we didn't like
is that you're charged 1,50 euros for water from the tap (supposedly purified before coming to the table).
It's a pity, because, as said, the place is beautifully decorated, but we will not come back</p>
</div>
<div class="opinion">
<h3>Opinion by @alvarovisus</h3>
<p>This was a neighborhood restaurant that we wandered into as we roamed the neighborhood. We made a reservation
for the next evening and were not disappointed. Food and service were excellent. The Pasta Carbonara was some
of the best I have ever had. Highly recommend it and within walking distance just up the block from the hotel.
So very convenient.</p>
</div>
</div>
</div>
<!-- RETIRO PARK -->
<div class="moreInfo" id="retiroInfo">
<div class="establishmentHeader">
<div class="establishmentPic"><img src="images/parque1.png" alt="" id="imageRetiro"/></div>
<div class="establishmentDetails">
<h2>Retiro Park</h2>
<p>Overall score: <img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services"></p>
<p id="locationRetiro">Location: Plaza de la Independencia, 7, 28001 Madrid</p>
<p>Click <b><u><a href="https://es.wikipedia.org/wiki/Parque_del_Retiro_de_Madrid">here</a></b></u> to visit
their website.</p>
</div>
<div class="establishmentOptions">
<button type="button" class="reservationButton" onclick="reservationRetiro()">Make a reservation</button><br>
<button type="button" class="reviewButton" onclick="reviewRetiro()">Write a review</button>
</div>
</div>
<div class="establishmentOpinions">
<div class="opinion">
<h3>Opinion by @hannaevans</h3>
<p>This is a very large park in the center of Madrid, near the Puerta de Alcala, Cibeles Fountain and El Prado
Museum. It has a large lake in which you can row a rented boat or watch others doing it. Bathrooms exist
but they are hidden without any signs leading you to them. They are underground between a gazebo and the boat
rental section of the lake which is on the calle Alcala side of the park. You can walk for a good hour or two
in this park.</p>
</div>
<div class="opinion">
<h3>Opinion by @juliaevans</h3>
<p>I have been studying in Madrid for a semester now. Retiro Park is my absolute favorite place in Madrid.
It’s just a quick walk from my apartment and every time I go there I see something new.
The park is massive and people are always out doing some kind of activities. You could spend hours exploring
the park. Highly recommend.</p>
</div>
<div class="opinion">
<h3>Opinion by @juliaevans</h3>
<p>We arrived to El Retiro without expecting more than a park , a collection of trees and that is it. However,
El Retiro was an awakening of senses. Beautiful trails fulfilled wit orange, gold and brownish colors,
the sound of the wind making symphonies between the trees, a lake full of young couples walking around the
water or spending time floating inside a boat and catching the autumnal sunlight.</p>
</div>
</div>
</div>
<!-- HOTEL FRANCISCO I -->
<div class="moreInfo" id="franciscoInfo">
<div class="establishmentHeader">
<div class="establishmentPic"><img src="images/hotel2.png" alt="" id="imageFrancisco"/></div>
<div class="establishmentDetails">
<h2>Hotel Francisco I</h2>
<p>Overall score: <img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/vacia.png" alt="star" class="services"></p>
<p id="locationFrancisco">Location: Calle del Arenal, 15, 28013 Madrid</p>
<p>Click <b><u><a href="https://www.hotelfrancisco.com/es/">here</a></b></u> to visit their website.</p>
</div>
<div class="establishmentOptions">
<button type="button" class="reservationButton" onclick="reservationFrancisco()">Make a reservation</button><br>
<button type="button" class="reviewButton" onclick="reviewFrancisco()">Write a review</button>
</div>
</div>
<div class="establishmentOpinions">
<div class="opinion">
<h3>Opinion by @johnadams</h3>
<p>Conveniently located for those flying in and/or out from the airport - there's a direct bus to the airport,
which is a few stops away. The room was very spacious and very comfortable, I really enjoyed it. Nice decor,
oo. What I disliked was some sort of mechanic rumour I could hear, which sounded like elevator door
(although my room wasn't close to an elevator). </p>
</div>
<div class="opinion">
<h3>Opinion by @juliaevans</h3>
<p>This hotel is idealy placed from airport.. the level of service is low. no bathrobe in room. no slippers.
coffee bowl not cleaned at room. food average. sure there must be better. room ok and clean. reception fine.
Guest's privacy at a hotel is the highest principal, I believe. That sort of behaviour doesn't make the guest
feel very comfortable or welcomed. Overall, however, I would probably stay there again. </p>
</div>
<div class="opinion">
<h3>Opinion by @paulagarcia</h3>
<p>Luckily to us this hotel had much more to offer than many 4 stars hotels I have seen. It is a beautiful
small property extremely well maintained with beautiful cute details such as flavored water at entrance and a
beautiful smoking areas in front of the hotel ( unfortunately we could not benefit from much, since the
municipality
was doing some construction work in the area) beds and pillows are super comfy with memory foam toppers on top
of mattresses,
some bathrooms with 2 sinks which is great if you are sharing the room . </p>
</div>
</div>
</div>
<!-- COCINA ARCOIRIS -->
<div class="moreInfo" id="cocinaInfo">
<div class="establishmentHeader">
<div class="establishmentPic"><img src="images/restaurante2.png" alt="" id="imageCocina"/></div>
<div class="establishmentDetails">
<h2>Cocina Arcoiris</h2>
<p>Overall score: <img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/entera.png" alt="star" class="services">
<img src="images/search/stars/vacia.png" alt="star" class="services">
<img src="images/search/stars/vacia.png" alt="star" class="services"></p>
<p id="locationCocina">Location: Plaza de Olavide, 2, 28010 Madrid</p>
<p>Click <b><u><a href="https://mundoarcoiris.com/cocina-del-arcoiris.html">here</a></b></u> to visit their
website.</p>
</div>
<div class="establishmentOptions">
<button type="button" class="reservationButton" onclick="reservationCocina()">Make a reservation</button><br>
<button type="button" class="reviewButton" onclick="reviewCocina()">Write a review</button>
</div>
</div>
<div class="establishmentOpinions">
<div class="opinion">
<h3>Opinion by @tonicaro</h3>
<p>The Cocina Arcoiris is a neighborhood cateteria/bar/restaurant offering a menu del dia with far more
choices
than any other restaurant of this sort that we've ever eaten in. (All menus del dia include a choice of first
and
second courses, dessert or coffee, bread and wine, beer or soda.) Most restaurants offer three or four choices
of
first and second courses; here the number is double that. You also can choose two first courses instead of one
each,
if you prefer.</p>
</div>
<div class="opinion">
<h3>Opinion by @rachel</h3>
<p>We've been here dozens of times and for the most part think the food is very good, the price very reasonable
and the
staff, mostly family, do a great job. The owner loves trying new dishes influenced by ideas garnered during his
travels
abroad. This is not an upscale, tourist restaurant; it is a local place and usually quite busy at lunch time.
We love
checking out the daily choices and usually pop in for lunch about once a week when we are in Madrid.</p>
</div>
<div class="opinion">
<h3>Opinion by @ericson</h3>
<p>This no-fills restaurant offers a good menu of the day, which is when it does most of its business, apart
from coffee
and croissants at breakfast. Clean modern cafetería style and serves up tasty home made food. Bread and other
dishes
are sold.This restaurant should not be rated against deluxe, date night, family celebration restaurants but
within the
category of menu of the day neighborhood lunch venues and within that category I give it a high recommendation.</p>
</div>
</div>
</div>
</div>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ RESERVATION ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<div class="reservation" id="reservation">
<!-- ILUNION ATRIUM -->
<div class="establishmentReservation" id="ilunionReservation">
<div class="reservationHeader">
<div class="reservationPic"><img src="images/hotel1.png" alt="" /></div>
<div class="reservationTitle">
<h1>Book for Ilunion Atrium</h1>
</div>
</div>
<div class="progressbarContainer">
<ul class="progressbar">
<li id="firstStepPBilunion"><b>Select Your Room</b></li>
<li id="secondStepPBilunion"><b>Enter Your Personal Info</b></li>
<li id="thirdStepPBilunion"><b>Enter Your Payment information</b></li>
</ul>
</div>
<div class="reservationBody">
<div class="reservationBodySection" id="roomSelilunion">
<h2>Select Your Room</h2>
<div class="roomSelectionBody">
<div class="reservationArrivalDate">
<label><b>Arrival Date: </b></label><br>
<input class="col-10" type="date" name="aDateIlunion" id="aDateIlunion" required>
</div>
<div class="reservationCheckOutDate">
<label><b>Check Out Date: </b></label><br>
<input class="col-10" type="date" name="cDateIlunion" id="cDateIlunion" required>
</div>
<div class="extraInfo">
<label><b>Additional Information: </b></label><br>
<textarea rows="4" cols="30"></textarea>
</div>
<div class="adultsSelector">
<label><b>Adults: </b></label>
<select class="f1to30"></select>
</div>
<div class="childSelctor">
<label><b>Childs: </b></label>
<select class="f1to30"></select>
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="displayIlunion()">Cancel</button>
<button type="button" class="roomSelButton" onclick="roomSelNextilunion()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="persInfoilunion">
<h2>Enter Your Personal Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>First Name: </b></label><br>
<input class="col-10" type="text" name="fNameIlunion" id="fNameIlunion">
</div>
<div class="personalInfoInput">
<label><b>Last Name: </b></label><br>
<input class="col-10" type="text" name="lNameIlunion" id="lNameIlunion">
</div>
<div class="personalInfoInput">
<label><b>Date of Birth: </b></label><br>
<input class="col-10" type="date" name="birthDateIlunion" id="birthDateIlunion">
</div>
<div class="personalInfoInput">
<label><b>Email Address: </b></label><br>
<input class="col-10" type="text" name="mailAddressIlunion" id="mailAddressIlunion">
</div>
<div class="personalInfoInput">
<label><b>Phone Number: </b></label><br>
<input class="col-10" type="text" name="phoneNumberIlunion" id="phoneNumberIlunion">
</div>
<div class="personalInfoInput">
<label><b>Address: </b></label><br>
<input class="col-10" type="text" name="addressIlunion" id="addressIlunion">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toRoomSelilunion()">Back</button>
<button type="button" class="personalInfoButton" onclick="personalInfoNextilunion()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="payInfoilunion">
<h2>Enter Your Payment Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>Credit Card Number: </b></label><br>
<input class="col-10" type="text" name="CCN" id="CCNIlunion">
</div>
<div class="personalInfoInput">
<label><b>Credit Card CVV: </b></label><br>
<input class="col-10" type="text" name="CCCCV" id="CCCCVIlunion">
</div>
<div class="personalInfoInput">
<label><b>Credit Card Valid Date: </b></label><br>
<input class="col-10" type="date" name="CCVD" id="CCVDIlunion">
</div>
<div class="personalInfoInput">
<label><b>Name on Card: </b></label><br>
<input class="col-10" type="text" name="NOC" id="NOCIlunion">
</div>
<div class="personalInfoInput">
<label><b>Billing Address: </b></label><br>
<input class="col-10" type="text" name="BA" id="BAIlunion">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toPersInfoilunion()">Back</button>
<button type="button" class="paymentButton" onclick="paymentNextilunion()">Pay</button><br>
</div>
</div>
</div>
</div>
</div>
<!-- FELLINA -->
<div class="establishmentReservation" id="fellinaReservation">
<div class="reservationHeader">
<div class="reservationPic"><img src="images/restaurante1.png" alt="" /></div>
<div class="reservationTitle">
<h1>Book for Fellina</h1>
</div>
</div>
<div class="progressbarContainer">
<ul class="progressbar">
<li id="firstStepPBfellina"><b>Select Your Room</b></li>
<li id="secondStepPBfellina"><b>Enter Your Personal Info</b></li>
<li id="thirdStepPBfellina"><b>Enter Your Payment information</b></li>
</ul>
</div>
<div class="reservationBody">
<div class="reservationBodySection" id="roomSelfellina">
<h2>Select Your Room</h2>
<div class="roomSelectionBody">
<div class="reservationArrivalDate">
<label><b>Arrival Date: </b></label><br>
<input class="col-10" type="date" name="date1" id="aDateFellina" required>
</div>
<div class="reservationCheckOutDate">
<label><b>Check Out Date: </b></label><br>
<input class="col-10" type="date" name="date1" id="cDateFellina" required>
</div>
<div class="extraInfo">
<label><b>Additional Information: </b></label><br>
<textarea rows="4" cols="30"></textarea>
</div>
<div class="adultsSelector">
<label><b>Adults: </b></label>
<select class="f1to30"></select>
</div>
<div class="childSelctor">
<label><b>Childs: </b></label>
<select class="f1to30"></select>
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="displayFellina()">Cancel</button>
<button type="button" class="roomSelButton" onclick="roomSelNextfellina()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="persInfofellina">
<h2>Enter Your Personal Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>First Name: </b></label><br>
<input class="col-10" type="text" name="fNameFellina" id="fNameFellina">
</div>
<div class="personalInfoInput">
<label><b>Last Name: </b></label><br>
<input class="col-10" type="text" name="lNameFellina" id="lNameFellina">
</div>
<div class="personalInfoInput">
<label><b>Date of Birth: </b></label><br>
<input class="col-10" type="date" name="birthDateFellina" id="birthDateFellina">
</div>
<div class="personalInfoInput">
<label><b>Email Address: </b></label><br>
<input class="col-10" type="text" name="mailAddressFellina" id="mailAddressFellina">
</div>
<div class="personalInfoInput">
<label><b>Phone Number: </b></label><br>
<input class="col-10" type="text" name="phoneNumberFellina" id="phoneNumberFellina">
</div>
<div class="personalInfoInput">
<label><b>Address: </b></label><br>
<input class="col-10" type="text" name="addressFellina" id="addressFellina">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toRoomSelfellina()">Back</button>
<button type="button" class="personalInfoButton" onclick="personalInfoNextfellina()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="payInfofellina">
<h2>Enter Your Payment Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>Credit Card Number: </b></label><br>
<input class="col-10" type="text" name="CCN" id="CCNFellina">
</div>
<div class="personalInfoInput">
<label><b>Credit Card CVV: </b></label><br>
<input class="col-10" type="text" name="CCCCV" id="CCCCVFellina">
</div>
<div class="personalInfoInput">
<label><b>Credit Card Valid Date: </b></label><br>
<input class="col-10" type="date" name="CCVD" id="CCVDFellina">
</div>
<div class="personalInfoInput">
<label><b>Name on Card: </b></label><br>
<input class="col-10" type="text" name="NOC" id="NOCFellina">
</div>
<div class="personalInfoInput">
<label><b>Billing Address: </b></label><br>
<input class="col-10" type="text" name="BA" id="BAFellina">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toPersInfofellina()">Back</button>
<button type="button" class="paymentButton" onclick="paymentNextfellina()">Pay</button><br>
</div>
</div>
</div>
</div>
</div>
<!-- RETIRO PARK -->
<div class="establishmentReservation" id="retiroReservation">
<div class="reservationHeader">
<div class="reservationPic"><img src="images/parque1.png" alt="" /></div>
<div class="reservationTitle">
<h1>Book for Retiro Park</h1>
</div>
</div>
<div class="progressbarContainer">
<ul class="progressbar">
<li id="firstStepPBretiro"><b>Select Your Room</b></li>
<li id="secondStepPBretiro"><b>Enter Your Personal Info</b></li>
<li id="thirdStepPBretiro"><b>Enter Your Payment information</b></li>
</ul>
</div>
<div class="reservationBody">
<div class="reservationBodySection" id="roomSelretiro">
<h2>Select Your Room</h2>
<div class="roomSelectionBody">
<div class="reservationArrivalDate">
<label><b>Arrival Date: </b></label><br>
<input class="col-10" type="date" name="date1" id="aDateRetiro" required>
</div>
<div class="reservationCheckOutDate">
<label><b>Check Out Date: </b></label><br>
<input class="col-10" type="date" name="date1" id="cDateRetiro" required>
</div>
<div class="extraInfo">
<label><b>Additional Information: </b></label><br>
<textarea rows="4" cols="30"></textarea>
</div>
<div class="adultsSelector">
<label><b>Adults: </b></label>
<select class="f1to30"></select>
</div>
<div class="childSelctor">
<label><b>Childs: </b></label>
<select class="f1to30"></select>
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="displayRetiro()">Cancel</button>
<button type="button" class="roomSelButton" onclick="roomSelNextretiro()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="persInforetiro">
<h2>Enter Your Personal Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>First Name: </b></label><br>
<input class="col-10" type="text" name="fNameRetiro" id="fNameRetiro">
</div>
<div class="personalInfoInput">
<label><b>Last Name: </b></label><br>
<input class="col-10" type="text" name="lNameRetiro" id="lNameRetiro">
</div>
<div class="personalInfoInput">
<label><b>Date of Birth: </b></label><br>
<input class="col-10" type="date" name="birthDateRetiro" id="birthDateRetiro">
</div>
<div class="personalInfoInput">
<label><b>Email Address: </b></label><br>
<input class="col-10" type="text" name="mailAddressRetiro" id="mailAddressRetiro">
</div>
<div class="personalInfoInput">
<label><b>Phone Number: </b></label><br>
<input class="col-10" type="text" name="phoneNumberRetiro" id="phoneNumberRetiro">
</div>
<div class="personalInfoInput">
<label><b>Address: </b></label><br>
<input class="col-10" type="text" name="addressRetiro" id="addressRetiro">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toRoomSelretiro()">Back</button>
<button type="button" class="personalInfoButton" onclick="personalInfoNextretiro()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="payInforetiro">
<h2>Enter Your Payment Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>Credit Card Number: </b></label><br>
<input class="col-10" type="text" name="CCN" id="CCNRetiro">
</div>
<div class="personalInfoInput">
<label><b>Credit Card CVV: </b></label><br>
<input class="col-10" type="text" name="CCCCV" id="CCCCVRetiro">
</div>
<div class="personalInfoInput">
<label><b>Credit Card Valid Date: </b></label><br>
<input class="col-10" type="date" name="CCVD" id="CCVDRetiro">
</div>
<div class="personalInfoInput">
<label><b>Name on Card: </b></label><br>
<input class="col-10" type="text" name="NOC" id="NOCRetiro">
</div>
<div class="personalInfoInput">
<label><b>Billing Address: </b></label><br>
<input class="col-10" type="text" name="BA" id="BARetiro">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toPersInforetiro()">Back</button>
<button type="button" class="paymentButton" onclick="paymentNextretiro()">Pay</button><br>
</div>
</div>
</div>
</div>
</div>
<!-- HOTEL FRANCISCO I -->
<div class="establishmentReservation" id="franciscoReservation">
<div class="reservationHeader">
<div class="reservationPic"><img src="images/hotel2.png" alt="" /></div>
<div class="reservationTitle">
<h1>Book for Hotel Francisco I</h1>
</div>
</div>
<div class="progressbarContainer">
<ul class="progressbar">
<li id="firstStepPBfrancisco"><b>Select Your Room</b></li>
<li id="secondStepPBfrancisco"><b>Enter Your Personal Info</b></li>
<li id="thirdStepPBfrancisco"><b>Enter Your Payment information</b></li>
</ul>
</div>
<div class="reservationBody">
<div class="reservationBodySection" id="roomSelfrancisco">
<h2>Select Your Room</h2>
<div class="roomSelectionBody">
<div class="reservationArrivalDate">
<label><b>Arrival Date: </b></label><br>
<input class="col-10" type="date" name="date1" id="aDateFrancisco" required>
</div>
<div class="reservationCheckOutDate">
<label><b>Check Out Date: </b></label><br>
<input class="col-10" type="date" name="date1" id="cDateFrancisco" required>
</div>
<div class="extraInfo">
<label><b>Additional Information: </b></label><br>
<textarea rows="4" cols="30"></textarea>
</div>
<div class="adultsSelector">
<label><b>Adults: </b></label>
<select class="f1to30"></select>
</div>
<div class="childSelctor">
<label><b>Childs: </b></label>
<select class="f1to30"></select>
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="displayFrancisco()">Cancel</button>
<button type="button" class="roomSelButton" onclick="roomSelNextfrancisco()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="persInfofrancisco">
<h2>Enter Your Personal Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>First Name: </b></label><br>
<input class="col-10" type="text" name="fNameFrancisco" id="fNameFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Last Name: </b></label><br>
<input class="col-10" type="text" name="lNameFrancisco" id="lNameFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Date of Birth: </b></label><br>
<input class="col-10" type="date" name="birthDateFrancisco" id="birthDateFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Email Address: </b></label><br>
<input class="col-10" type="text" name="mailAddressFrancisco" id="mailAddressFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Phone Number: </b></label><br>
<input class="col-10" type="text" name="phoneNumberFrancisco" id="phoneNumberFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Address: </b></label><br>
<input class="col-10" type="text" name="addressFrancisco" id="addressFrancisco">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toRoomSelfrancisco()">Back</button>
<button type="button" class="personalInfoButton" onclick="personalInfoNextfrancisco()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="payInfofrancisco">
<h2>Enter Your Payment Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>Credit Card Number: </b></label><br>
<input class="col-10" type="text" name="CCN" id="CCNFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Credit Card CVV: </b></label><br>
<input class="col-10" type="text" name="CCCCV" id="CCCCVFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Credit Card Valid Date: </b></label><br>
<input class="col-10" type="date" name="CCVD" id="CCVDFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Name on Card: </b></label><br>
<input class="col-10" type="text" name="NOC" id="NOCFrancisco">
</div>
<div class="personalInfoInput">
<label><b>Billing Address: </b></label><br>
<input class="col-10" type="text" name="BA" id="BAFrancisco">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toPersInfofrancisco()">Back</button>
<button type="button" class="paymentButton" onclick="paymentNextfrancisco()">Pay</button><br>
</div>
</div>
</div>
</div>
</div>
<!-- COCINA ARCOIRIS -->
<div class="establishmentReservation" id="cocinaReservation">
<div class="reservationHeader">
<div class="reservationPic"><img src="images/restaurante2.png" alt="" /></div>
<div class="reservationTitle">
<h1>Book for Cocina Arcoiris</h1>
</div>
</div>
<div class="progressbarContainer">
<ul class="progressbar">
<li id="firstStepPBcocina"><b>Select Your Room</b></li>
<li id="secondStepPBcocina"><b>Enter Your Personal Info</b></li>
<li id="thirdStepPBcocina"><b>Enter Your Payment information</b></li>
</ul>
</div>
<div class="reservationBody">
<div class="reservationBodySection" id="roomSelcocina">
<h2>Select Your Room</h2>
<div class="roomSelectionBody">
<div class="reservationArrivalDate">
<label><b>Arrival Date: </b></label><br>
<input class="col-10" type="date" name="date1" id="aDateCocina" required>
</div>
<div class="reservationCheckOutDate">
<label><b>Check Out Date: </b></label><br>
<input class="col-10" type="date" name="date1" id="cDateCocina" required>
</div>
<div class="extraInfo">
<label><b>Additional Information: </b></label><br>
<textarea rows="4" cols="30"></textarea>
</div>
<div class="adultsSelector">
<label><b>Adults: </b></label>
<select class="f1to30"></select>
</div>
<div class="childSelctor">
<label><b>Childs: </b></label>
<select class="f1to30"></select>
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="displayCocina()">Cancel</button>
<button type="button" class="roomSelButton" onclick="roomSelNextcocina()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="persInfococina">
<h2>Enter Your Personal Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>First Name: </b></label><br>
<input class="col-10" type="text" name="fNameCocina" id="fNameCocina">
</div>
<div class="personalInfoInput">
<label><b>Last Name: </b></label><br>
<input class="col-10" type="text" name="lNameCocina" id="lNameCocina">
</div>
<div class="personalInfoInput">
<label><b>Date of Birth: </b></label><br>
<input class="col-10" type="date" name="birthDateCocina" id="birthDateCocina">
</div>
<div class="personalInfoInput">
<label><b>Email Address: </b></label><br>
<input class="col-10" type="text" name="mailAddressCocina" id="mailAddressCocina">
</div>
<div class="personalInfoInput">
<label><b>Phone Number: </b></label><br>
<input class="col-10" type="text" name="phoneNumberCocina" id="phoneNumberCocina">
</div>
<div class="personalInfoInput">
<label><b>Address: </b></label><br>
<input class="col-10" type="text" name="addressCocina" id="addressCocina">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toRoomSelcocina()">Back</button>
<button type="button" class="personalInfoButton" onclick="personalInfoNextcocina()">Next</button><br>
</div>
</div>
</div>
<div class="reservationBodySection" id="payInfococina">
<h2>Enter Your Payment Information</h2>
<div class="personalInfoBody">
<div class="personalInfoInput">
<label><b>Credit Card Number: </b></label><br>
<input class="col-10" type="text" name="CCN" id="CCNCocina">
</div>
<div class="personalInfoInput">
<label><b>Credit Card CVV: </b></label><br>
<input class="col-10" type="text" name="CCCCV" id="CCCCVCocina">
</div>
<div class="personalInfoInput">
<label><b>Credit Card Valid Date: </b></label><br>
<input class="col-10" type="date" name="CCVD" id="CCVDCocina">
</div>
<div class="personalInfoInput">
<label><b>Name on Card: </b></label><br>
<input class="col-10" type="text" name="NOC" id="NOCCocina">
</div>
<div class="personalInfoInput">
<label><b>Billing Address: </b></label><br>
<input class="col-10" type="text" name="BA" id="BACocina">
</div>
<div class="nextButtonDiv">
<button type="button" class="roomSelButton" onclick="toPersInfococina()">Back</button>
<button type="button" class="paymentButton" onclick="paymentNextcocina()">Pay</button><br>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="leaveModal">
<div class="modalContent">
<header>
<div class="modalHeader">
<h1> You are Leaving the Page </h1>
</div>