-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththrill-seekers.html
1022 lines (1014 loc) · 59.6 KB
/
thrill-seekers.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" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<script src="https://www.w3schools.com/lib/w3.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/thrill-seekers.css" />
<link rel="stylesheet" href="css/W3.css">
<meta name="author" content="Musfirah" />
<link rel="icon" type="image/x-icon" href="media/png/logo/logotop.png" />
<meta name="description" content="Thrill-Seekers" />
<script src="js/thrill-seekers.js"></script>
<title>Thrill-Seekers - Tourist Attractions in Singapore</title>
</head>
<body onload="todaydate()" id="top">
<main w3-include-html="header.html"></main>
<script>
//code for inserting navigation panel
w3.includeHTML(); //this calls out the w3school method to be included in the index.html page.
</script>
<section class="header">
<div>
<h1 class="big">Thrill Seekers</h1>
</div>
</section>
<!--POPUP FORM-->
<div id="overlay">
<div id="textonoverlay">
<button class="closebuttonpopup" onclick="turnoffoverlay()">Close</button>
<div>
<p class="totalordertext">Your Total Order Is:</p>
<p id="displayprice" class="totalordertext"></p>
<p class="proceedtext">Proceed by clicking the confirm button</p>
<button type="submit" class="button" id="confirmationbutton" onclick="turnoffoverlay(); thankYou()">Confirm Order</button><!--thankYou()is for validation $=0-->
<p id="thankyou"></p>
</div>
</div>
</div>
<!--end popup form-->
<!--another popup for signup-->
<div id="overlay1">
<div id="textonsignup">
<button class="closebuttonpopup1" onclick="turnoffoverlay1()">Close</button>
<div>
<p class="signuptitle">Sign Up</p>
<p class="signupcontent">Please fill in this form to sign up for our email newsletter.</p>
<hr />
<div>
<form id="signupForm" onsubmit="alert('Thank you for signing up!')">
<div>
<label for="emailsignup">Email:</label>
<input type="email" id="emailsignup" required class="inputwidth"/>
</div>
<div>
<label for="passwordsignup">Password:</label>
<input type="password" id="passwordsignup" maxlength="11" pattern="[0-9][a-z]{10}" class="inputwidth" placeholder="Password should contain a number first, followed by 10 alphabet" required/>
</div>
<div class="passwordinput">
<input type="checkbox" id="togglepassword" onclick="myPassword()" />Show Password <!--myPassword() basically show password-->
</div>
<div>
By creating an account, you are allowing us to send emails to you.
</div>
<div>
<button type="submit" class="button">Sign Up</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!--end of popup for signup-->
<section>
<p class="big2">Create <span>exciting memories</span><br />by having fun.</p>
<p class="font1">
If you are seeking for fun activities to do or have a spirit for adventure, you are in the right place!
<br />Underneath is a list of thrilling places that you MUST visit!
</p>
<img src="media/png/thrillcup.PNG" alt="roller coaster cart" id="rcart" /><hr class="track" />
</section>
<section>
<!--USS--------------------------------------------------------------------------------------------------------------------------->
<section class="thrilling">
<div class="title1">
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/explore" target="_blank">Universal Studios<br />Singapore</a>
</div>
<div class="inline">
<div>
<!--TripAdvisor-->
<!--<img src="media/png/tripadvisor.png" alt="tripadvisor" width="30" height="30"/><img src="media/png/fullstar.png" alt="fullstar" width="30" height="30" />-->
<div class="location1">
<img src="media/png/watchblue.png" alt="watchblue" width="40" height="40" class="watchblue" /><p class="subtitle">Opening Hours:</p>
<p class="subcontent">10am - 7pm</p>
</div>
<div class="ratings">
<p><a href="https://www.tripadvisor.com.sg/Attraction_Review-g294264-d2439664-Reviews-Universal_Studios_Singapore-Sentosa_Island.html" target="_blank" class="triprating">TripAdvisor Traveller Rating</a></p>
<img src="media/png/tripadvisor.png" alt="tripadvisor" width="20" height="20" class="tripadvisor" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/halfstar.png" alt="halfstar" width="10" height="10" class="stars2" />
</div>
<div class="location12">
<img src="media/png/locationred.png" alt="location red" width="40" height="40" class="locationred" /><p class="subtitle">Universal Studios Singapore</p>
<p class="subcontent">
Resorts World Sentosa<br />
8 Sentosa Gateway<br />
Sentosa Island<br />
Singapore 098269<br />
</p>
<div class="suggestedroute" onclick="showRoute()">
Click here for suggested route.
<div id="lastcontent" class="popuptext">
<table>
<caption>Buses to take:</caption>
<tr>
<td>65</td>
<td>80</td>
<td>93</td>
<td>188</td>
<td>855</td>
</tr>
<tr>
<td>10</td>
<td>30</td>
<td>97</td>
<td>100</td>
<td>131</td>
</tr>
<tr>
<td>143</td>
<td>145</td>
<td>166</td>
<td class="darkertable"></td>
<td class="darkertable"></td>
</tr>
</table>
<p>
Aligt at <u>VivoCity</u> & board bus <u>RWS8</u> from bus stop <u>14141</u> at VivoCity
OR bus stop <u>14121</u> at Merrill Lynch, HarbourFront.
Alight at Resorts World Sentosa drop-off point.
</p>
<cite class="smallcite">
Referenced from<br />
https://www.rwsentosa.com/en/getting-here
</cite>
</div>
</div>
</div>
</div>
<img class="imgdes" src="media/jpg/thrilluss.jpg" alt="usspicture" title="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/explore" />
</div>
<div class="inline marginr">
<p class="font3">
Being the Southeast Asia's first and only Universal Studios theme park,
the park features various rides, attractions and shows in seven themed
zones-mainly the Sci-Fi City, New York, Hollywood, Ancient Egypt,
The Lost World, Far Far Away, and Madagascar zone. Be sure not to miss
out on any of the zones because each zone is unique in their own way!
Take one example, Sci-Fi City offers a popular ride called "TRANSFORMER
The Ride: The Ultimate 3D Battle" which is sure to get your adrenaline
pumping! Another well-known ride for those who are more daring is the
Battlestar Galactica: HUMAN vs. CYLON<sup>TM</sup>.<br />
Take note: Most minimum height to ride is 122cm.<br />
</p>
<table class="usstable">
<caption><i>Some list of attractions that you may like</i></caption>
<tr>
<th rowspan="4" class="darkertable">Rides</th>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/battlestar-galactica" target="_blank">
Battlestar Galactica:<br />
HUMAN vs.CYLON<sup>TM</sup>
</a>
</td>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/accelerator" target="_blank">Accelerator<sup>TM</sup></a></td>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/transformers-the-ride-the-ultimate-3d-battle" target="_blank">
TRANSFORMERS The Ride:<br />
The Ultimate 3D Battle
</a>
</td>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/revenge-of-the-mummy" target="_blank">
Revenge of
<br />the Mummy<sup>TM</sup>
</a>
</td>
</tr>
<tr>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/jurassic-park-rapids-adventure" target="_blank">
Jurassic Park Rapids<br />
Adventure<sup>TM</sup>
</a>
</td>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/sesame-street-spaghetti-space-chase" target="_blank">
Sesame Street Spaghetti<br />
Space Chase
</a>
</td>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/treasure-hunters" target="_blank">Treasure Hunters<sup>TM</sup></a></td>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/amber-rock-climb" target="_blank">Amber Rock Climb<sup>TM</sup></a></td>
</tr>
<tr>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/canopy-flyer" target="_blank">Canopy Flyer<sup>TM</sup></a></td>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/dino-soarin" target="_blank">Dino-Soarin'<sup>TM</sup></a></td>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/puss-in-boots-giant-journey" target="_blank">
Puss in Boots'<br />
Giant Journey
</a>
</td>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/magic-potion-spin" target="_blank">Magic Potion Spin</a></td>
</tr>
<tr>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/enchanted-airways" target="_blank">Enchanted Airways</a></td>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/king-juliens-beach-party-go-round" target="_blank">
King Julien's Beach<br />
Party-Go-Round
</a>
</td>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/rides/madagascar-a-crate-adventure" target="_blank">
Madagascar:A<br />
Crate Adventure
</a>
</td>
<td rowspan="3" id="blacktable"></td>
</tr>
<tr>
<th rowspan="2" class="darkertable">Shows</th>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/plan-your-visit" target="_blank">
Lake Hollywood<br />
Spectacular<sup>TM</sup>
</a>
</td>
<td>
<a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/shows/lights-camera-action-by-steven-spielberg" target="_blank">
Lights,Camera,Action!<sup>TM</sup><br />
Hosted by Steven Spielberg
</a>
</td>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/shows/waterworld" target="_blank">WaterWorld<sup>TM</sup></a></td>
</tr>
<tr>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/shows/shrek-4-d-adventure" target="_blank">Shrek 4-D Adventure</a></td>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/shows/donkey-live" target="_blank">Donkey LIVE</a></td>
<td><a href="https://www.rwsentosa.com/en/attractions/universal-studios-singapore/things-to-do/street-entertainment/sesame-street-shows" target="_blank">Sesame Street Shows</a></td>
</tr>
</table>
<br />
<cite>
Resort World Sentosa Singapore. (n.d.). Universal Studios Singapore.<br />
Retrieved from https://www.rwsentosa.com/en/attractions/universal-studios-singapore/explore
</cite>
<br />
</div>
<br />
<br />
<br />
</section>
</section>
<!---------------------------------------------------------------------------------------------------------------------->
<!--Mega adventure park-->
<section class="zippingthrough">
<section class="megazip">
<!--animation-->
<div>
<hr class="cable" /><img id="ziplineperson" src="media/png/zipline-filled.png" alt="zipline" />
</div>
<div class="title2"><a href="https://sg.megaadventure.com/" target="_blank">Mega Adventure Park</a></div>
<div class="margintop">
<!--LEAVE space between title and div-->
<div class="inline marginrr">
<div class="moveleftabit">
<div class="location1">
<img src="media/png/watchblue.png" alt="watchblue" width="40" height="40" class="watchblue" /><p class="subtitle">Opening Hours:</p>
<p class="subcontent">11am - 7pm</p>
</div>
<div class="ratings">
<p><a href="https://www.tripadvisor.com.sg/Attraction_Review-g294264-d1758910-Reviews-Mega_Adventure_Park-Sentosa_Island.html" target="_blank" class="triprating">TripAdvisor Traveller Rating</a></p>
<img src="media/png/tripadvisor.png" alt="tripadvisor" width="20" height="20" class="tripadvisor" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/halfstar.png" alt="halfstar" width="10" height="10" class="stars2" />
</div>
<div class="location12">
<img src="media/png/locationred.png" alt="location red" width="40" height="40" class="locationred" /><p class="subtitle">Mega Adventure - Singapore</p>
<p class="subcontent">
10A Siloso Beach Walk,<br />
Singapore 099008<br />
</p>
<div class="suggestedroute" onclick="showRoute2()">
<!--Show Route 2 for Mega Adv Park-->
Click here for suggested route.
<div id="lastcontent2" class="popuptext">
<table>
<caption>Route to take:</caption>
<tr>
<th colspan="2" class="darkertable">To Siloso Beach Counter</th>
</tr>
<tr>
<th class="darkertable">By Sentosa Express</th>
<td>
Alight at Beach Station<br />
and take the Sentosa Beach Tram.<br />
Alight at the 3rd stop.
</td>
</tr>
<tr>
<th class="darkertable">By Bus</th>
<td>
Take Sentosa Bus A &<br />
alight at Siloso Point.<br />
Walk along the beach until<br />
you see the Mega Adventure<br />
beach counter
</td>
</tr>
<tr>
<th class="darkertable">By Sentosa Beach Tram</th>
<td>
Alight at Mega Adventure<br />
Park stop.
</td>
</tr>
</table>
<cite>
Referenced from<br />
https://www.sentosa.com.sg/explore/attractions/mega-adventure
</cite>
</div>
</div>
</div>
</div>
<p class="font3">
Suitable for the entire family, Mega Adventure Park is a place
where all adventure seekers meet.The Mega Adventure Park is
famous for its MegaZip. At 75m high, 450m long and heart pounding
speed of 60kph, Megazip is Southeast Asia's steepest flying fox.
As you fly over the jungle and beaches of the island on the zipline,
be sure not to close your eyes as you do not want to miss the
breathtaking view around you! Apart from that, the Mega Adventure Park
also offers other various activities for those who are keen to try them.
<br /><br />
</p>
</div>
<div class="inline">
<iframe width="500" height="350" src="https://www.youtube.com/embed/lRlSK2QqbhM" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<cite class="videoframe">
<br />Video taken from
https://www.youtube.com/watch?v=lRlSK2QqbhM
</cite>
</div>
<div class="megatable">
<table>
<caption><i>Activities available at Mega Adventure Park</i></caption>
<tr>
<th colspan="2">Activities</th>
<th class="whiter">Description</th>
</tr>
<tr>
<td><img src="media/png/megazip-1.png" alt="megazip" width="60" height="60" /></td>
<td>MegaZip</td>
<td>
At 75m high and 450m long,fly over the jungle
and beaches of the island at 60kph!
</td>
</tr>
<tr>
<td><img src="media/png/megaclimb.png" alt="megaclimb" width="60" height="60" /></td>
<td>MegaClimb</td>
<td>
With 36 treetop obstacles and about 5-15m high,
prepare yourself for an exciting adventure.
</td>
</tr>
<tr>
<td><img src="media/png/megajump.png" alt="megajump" width="60" height="60" /></td>
<td>MegaJump</td>
<td>
Make your leap of faith and experience freefall
sensation as you drop from a height of 15m high!
</td>
</tr>
<tr>
<td><img src="media/png/megawall-icon.png" alt="megawall" width="60" height="60" /></td>
<td>MegaWall</td>
<td>
A monster wall with a height of 15m high.
Reach the summit and abseil back down.
</td>
</tr>
<tr>
<td><img src="media/png/megabounce.png" alt="megabounce" width="60" height="60" /></td>
<td>MegaBounce</td>
<td>
Bounce up to 8m high on any 4 of
the trampolines available!
</td>
</tr>
</table>
</div>
</div>
<br /><br /><br /><br /><br /><br /><br />
</section>
</section>
<section class="wetmaze">
<!--animation-->
<div class="boxxx">
<img id="jetskiing" src="media/png/jetski.png" alt="jetskiing" /><hr class="waves" />
</div>
<div class="title3"><a href="https://www.rwsentosa.com/en/attractions/adventure-cove-waterpark" target="_blank">Adventure Cove<br />Waterpark</a></div>
<div class="floating block">
<img class="advcovpic" src="media/jpg/adventurecove.jpg" alt="adventure cove" title="https://www.rwsentosa.com/en/attractions/adventure-cove-waterpark" />
<div>
<div class="location1">
<img src="media/png/watchblue.png" alt="watchblue" width="40" height="40" class="watchblue" /><p class="subtitle">Opening Hours:</p>
<p class="subcontent">10am - 6pm</p>
</div>
<div class="ratings">
<p><a href="https://www.tripadvisor.com.sg/Attraction_Review-g294264-d3747640-Reviews-Adventure_Cove_Waterpark-Sentosa_Island.html" target="_blank" class="triprating">TripAdvisor Traveller Rating</a></p>
<img src="media/png/tripadvisor.png" alt="tripadvisor" width="20" height="20" class="tripadvisor" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
<img src="media/png/fullstar.png" alt="fullstar" width="10" height="10" class="stars1" />
</div>
<div class="location12">
<img src="media/png/locationred.png" alt="location red" width="40" height="40" class="locationred" /><p class="subtitle">Adventure Cove Waterpark</p>
<p class="subcontent">
Resorts World Sentosa<br />
8 Sentosa Gateway<br />
Sentosa Island<br />
Singapore 098269<br />
</p>
<div class="suggestedroute" onclick="showRoute3()">
Click here for suggested route.
<div id="lastcontent3" class="popuptext">
<table>
<caption>Buses to take:</caption>
<tr>
<td>65</td>
<td>80</td>
<td>93</td>
<td>188</td>
<td>855</td>
</tr>
<tr>
<td>10</td>
<td>30</td>
<td>97</td>
<td>100</td>
<td>131</td>
</tr>
<tr>
<td>143</td>
<td>145</td>
<td>166</td>
<td class="darkertable"></td>
<td class="darkertable"></td>
</tr>
</table>
<p>
Aligt at <u>VivoCity</u> & board bus <u>RWS8</u> from bus stop <u>14141</u> at VivoCity
OR bus stop <u>14121</u> at Merrill Lynch, HarbourFront.
Alight at Resorts World Sentosa drop-off point.
</p>
<cite class="smallcite">
Referenced from<br />
https://www.rwsentosa.com/en/getting-here
</cite>
</div>
</div>
</div>
</div>
</div>
<div class="advcovcontent gobottom">
<p class="font3">
Adventure Cove Waterpark is a famous attraction that
had integrated a waterpark and a sea aquarium together.
At Adventure Cove Waterpark,you can laze the day away
drifting at the lazy river and also ride the thrilling
and high-speed water slides. What makes Adventure Cove
Waterpark unique is that visitors can also snorkel with
20,000 tropical fish over a colourful reef, wade among
rays and even come face to face with sharks! Be prepared
to be awed by the breathtaking view of the marine life!
Not to mention, for those who are scuba-divers, you will
definitely like this place!<br />
Take note: Most minimum height to ride is 122cm.<br />
</p>
<table class="advcovtable">
<caption><i>List of activities at Adventure Cove Waterpark</i></caption>
<tr>
<th rowspan="3">Rides</th>
<td>Dueling Racer</td>
<td>Pipeline Plunge</td>
<td>Riptide Rocket</td>
</tr>
<tr>
<td>Spiral Washout</td>
<td>Splashworks</td>
<td>Tidal Twister</td>
</tr>
<tr>
<td>Wet Maze</td>
<td>Whirlpool Washout</td>
<td>Adventure River</td>
</tr>
<tr>
<th rowspan="3">Marine Life</th>
<td>Sea Trek Adventure</td>
<td>Shark Dive</td>
<td>Shark Encounter</td>
</tr>
<tr>
<td>Ray Bay</td>
<td>Discover Scuba Diving</td>
<td>PADI Open Water Dive</td>
</tr>
<tr>
<td>
PADI Advanced Open<br />
Water Dive
</td>
<td>Open Ocean Dive</td>
<td>Rainbow Reef</td>
</tr>
</table>
</div>
</section>
<!--FORUM--------------------------------------------------------------------------------------------------------------------------->
<section>
<div>
<p class="formtitle">Keen to visit<br />these places?</p>
</div>
<div class="gobottom">
<p class="font1">
After looking at the list of places, do you feel like visiting them?<br />
If so, we have prepared an all-in-one form for you<br />
to purchase the tickets to visit these places!
</p>
</div>
<section class="fillinform">
<div class="purchaseform">
<form onsubmit="alert('Thank You for purchasing!')" id="myForm">
<!--if validation successful and form submitted, alert-->
<fieldset class="firstfieldset">
<legend>Purchase Your Tickets</legend>
<div class="selectplace">
<p>Please select the place:</p>
<input type="checkbox" name="Place" value="USS" id="ticketuss" required onclick="choosenticket(); unchoosenticket();" />Universal Studios Singapore
<input type="checkbox" name="Place" value="Park" id="ticketpark" required onclick="choosenticket(); unchoosenticket();" />Mega Adventure Park
<input type="checkbox" name="Place" value="Waterpark" id="ticketwater" required onclick="choosenticket(); unchoosenticket();" />Adventure Cove Waterpark
</div>
<div class="dateofvisit">
<span>Date of visit:</span><br />
<input id="DateVisit" type="date" name="DateVisit" placeholder="dd/mm/yyyy" /> <!--make min attribute to today-->
</div>
<!--USS-->
<div id="formtableuss" hidden>
<!--BY DEFAULT ALL TABLE HIDDEN UNLESS YOU CHECK-->
<table>
<caption>Universal Studios Singapore</caption>
<tr>
<td>Ticket Type</td>
<td>Description</td>
<td>Adult(13-59)</td>
<td>Child(Age 4-12)</td>
<td>Senior(Age 60 & above)</td>
</tr>
<!--One-day ticket-->
<tr>
<td><img src="media/jpg/one-dayticket.jpg" alt="onedayticket" width="150" height="150" /></td>
<td>
Regular ticket valid<br />
for one visit. Pass<br />
within 30 days
</td>
<td>
$76<br />
<input type="number" min="1" max="100" name="1dayAdult" id="1dayAdult" />
</td>
<td>
$56<br />
<input type="number" min="1" max="100" name="1dayChild" id="1dayChild" />
</td>
<td>
$38<br />
<input type="number" min="1" max="100" name="1daySenior" id="1daySenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/singaporeone-dayticket.jpg" alt="singaporeonedayticket" width="150" height="150" /></td>
<td>
Regular ticket for <br />
Singaporean. One<br />
visit and ID is<br />
required.
</td>
<td>
$72<br />
<input type="number" min="1" max="100" name="singaporean1dayAdult" id="singaporean1dayAdult" />
</td>
<td>
$53<br />
<input type="number" min="1" max="100" name="singaporean1dayChild" id="singaporean1dayChild" />
</td>
<td>Not Available</td>
</tr>
<tr>
<td><img src="media/jpg/annualpass.jpg" alt="annualpass" width="150" height="150" /></td>
<td>
12 months of<br />
unlimited admission.
</td>
<td>
$188<br />
<input type="number" min="1" max="100" name="annualpassAdult" id="annualpassAdult" />
</td>
<td>
$158<br />
<input type="number" min="1" max="100" name="annualpassChild" id="annualpassChild" />
</td>
<td>
$158<br />
<input type="number" min="1" max="100" name="annualpassSenior" id="annualpassSenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/annualpassexp.jpg" alt="annualpassExpress" width="150" height="150" /></td>
<td>
12 months of<br />
unlimited admission<br />
and fast entry<br />
to rides
</td>
<td>
$318<br />
<input type="number" min="1" max="100" name="annualpassExpAdult" id="annualpassExpAdult" />
</td>
<td>
$288<br />
<input type="number" min="1" max="100" name="annualpassExpChild" id="annualpassExpChild" />
</td>
<td>
$288<br />
<input type="number" min="1" max="100" name="annualpassExpSenior" id="annualpassExpSenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/seasonpass.jpg" alt="seasonpass" width="150" height="150" /></td>
<td>
6 months of<br />
unlimited admission.
</td>
<td>
$98<br />
<input type="number" min="1" max="100" name="seasonpassAdult" id="seasonpassAdult" />
</td>
<td>
$88<br />
<input type="number" min="1" max="100" name="seasonpassChild" id="seasonpassChild" />
</td>
<td>
$88<br />
<input type="number" min="1" max="100" name="seasonpassSenior" id="seasonpassSenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/seasonpassExp.jpg" alt="seasonpassExp" width="150" height="150" /></td>
<td>
6 months of<br />
unlimited admission<br />
and fast entry<br />
to rides
</td>
<td>
$198<br />
<input type="number" min="1" max="100" name="seasonpassExpAdult" id="seasonpassExpAdult" />
</td>
<td>
$188<br />
<input type="number" min="1" max="100" name="seasonpassExpChild" id="seasonpassExpChild" />
</td>
<td>
$188<br />
<input type="number" min="1" max="100" name="seasonpassExpSenior" id="seasonpassExpSenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/studentseasonpass.jpg" alt="studentseasonpass" width="150" height="150" /></td>
<td>
Student pass required.<br />
6 months of<br />
unlimited admissions
</td>
<td colspan="3">
$88<br />
<input type="number" min="1" max="100" name="studentseasonpass" id="studentseasonpass" />
</td>
</tr>
<tr>
<td><img src="media/jpg/studentseasonpassExp.jpg" alt="studentseasonpassExp" width="150" height="150" /></td>
<td>
Student pass required.<br />
6 months of<br />
unlimited admissions<br />
and fast entry<br />
to rides
</td>
<td colspan="3">
$188<br />
<input type="number" min="1" max="100" name="studentseasonpassExp" id="studentseasonpassExp" />
</td>
</tr>
</table>
</div>
<!--MegaAdvPark-->
<div id="formtablemap" hidden>
<table>
<caption>Mega Adventure Park</caption>
<tr>
<td>
Activity<br />
(MegaWall currently<br />
not available)
</td>
<td>Description</td>
<td>Price</td>
</tr>
<tr>
<td><img src="media/png/megazip-1.png" alt="megazip" width="150" height="150" /></td>
<td>450m Zipwire</td>
<td>
$50<br />
<input type="number" min="1" max="100" name="megazip" id="megazipTABLE" />
</td>
</tr>
<tr>
<td><img src="media/png/megaclimb.png" alt="megaclimb" width="150" height="150" /></td>
<td>5m to 15m</td>
<td>
$45<br />
<input type="number" min="1" max="100" name="megaclimb" id="megaclimbTABLE" />
</td>
</tr>
<tr>
<td><img src="media/png/megajump.png" alt="megajump" width="150" height="150" /></td>
<td>15m High</td>
<td>
$25<br />
<input type="number" min="1" max="100" name="megajump" id="megajumpTABLE" />
</td>
</tr>
<tr>
<td><img src="media/png/megabounce.png" alt="megabounce" width="150" height="150" /></td>
<td>Bungee Trampoline</td>
<td>
$15<br />
<input type="number" min="1" max="100" name="megabounce" id="megabounceTABLE" />
</td>
</tr>
</table>
</div>
<!--ADVENTURE COVE WATERPARK-->
<div id="formtableacw" hidden>
<table>
<caption>Adventure Cove Waterpark</caption>
<tr>
<td>Ticket Type</td>
<td>Description</td>
<td>Adult(Age 13-59)</td>
<td>Child(Age 4-12)</td>
<td>Senior(Age 60 & Above)</td>
</tr>
<tr>
<td><img src="media/jpg/acwonedayticket.jpg" alt="acwonedayticket" width="150" height="150" /></td>
<td>
Regular ticket.
<br />Valid for selected date
</td>
<td>
$38<br />
<input type="number" min="1" max="100" name="acwonedayticketAdult" id="acwonedayticketAdult" />
</td>
<td>
$30<br />
<input type="number" min="1" max="100" name="acwonedayticketChild" id="acwonedayticketChild" />
</td>
<td>
$30<br />
<input type="number" min="1" max="100" name="acwonedayticketSenior" id="acwonedayticketSenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/acwsingaporeonedayticket.jpg" alt="acwsingaporeonedayticket" width="150" height="150" /></td>
<td>
Regular ticket<br />
for Singaporean.<br />
ID required.
</td>
<td>
$32<br />
<input type="number" min="1" max="100" name="acwsingaporeonedayticketAdult" id="acwsingaporeonedayticketAdult" />
</td>
<td>
$24<br />
<input type="number" min="1" max="100" name="acwsingaporeonedayticketChild" id="acwsingaporeonedayticketChild" />
</td>
<td>
$24<br />
<input type="number" min="1" max="100" name="acwsingaporeonedayticketSenior" id="acwsingaporeonedayticketSenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/acwattractionsannualpass.jpg" alt="acwattractionsannualpass" width="150" height="150" /></td>
<td>
12 months of<br />
unlimited admissions.
</td>
<td>
$98<br />
<input type="number" min="1" max="100" name="acwattractionsannualpassAdult" id="acwattractionsannualpassAdult" />
</td>
<td>
$68<br />
<input type="number" min="1" max="100" name="acwattractionsannualpassChild" id="acwattractionsannualpassChild" />
</td>
<td>
$68<br />
<input type="number" min="1" max="100" name="acwattractionsannualpassSenior" id="acwattractionsannualpassSenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/acwattractionsseasonpass.jpg" alt="acwattractionsseasonpass" width="150" height="150" /></td>
<td>
6 months of<br />
unlimited admissions.
</td>
<td>
$68<br />
<input type="number" min="1" max="100" name="acwattractionsseasonpassAdult" id="acwattractionsseasonpassAdult" />
</td>
<td>
$58<br />
<input type="number" min="1" max="100" name="acwattractionsseasonpassChild" id="acwattractionsseasonpassChild" />
</td>
<td>
$58<br />
<input type="number" min="1" max="100" name="acwattractionsseasonpassSenior" id="acwattractionsseasonpassSenior" />
</td>
</tr>
<tr>
<td><img src="media/jpg/acwattractionsstudentseasonpass.jpg" alt="acwattractionsstudentseasonpass" width="150" height="150" /></td>
<td>
6 months of<br />
unlimited admissions.<br />
Student ID required.
</td>
<td colspan="3">
$58<br />
<input type="number" min="1" max="100" name="acwattractionsstudentseasonpass" id="acwattractionsstudentseasonpass" />
</td>
</tr>
</table>
</div>
</fieldset>
<!--Customer Details-->
<fieldset class="secondfieldset">
<legend>Customer Details</legend>
<div>
<label for="firstname">First Name*:</label>
<input type="text" required />
</div>
<div>
<label for="lastname">Last Name*:</label>
<input type="text" required />
</div>
<div>
<label for="email">Email*:</label>
<input type="email" required />
</div>
</fieldset>
<!--PAYMENT METHOD----------------------------------------------------------------->
<fieldset class="thirdfieldset">
<legend>Payment Method</legend>
<div>
<!--Visa--><p class="pleasepay">Please select one payment method:</p>
<div class="visacard">
<img src="media/png/visa.png" alt="visa" width="200" height="150" />
<input type="radio" name="payment" value="visa" id="visapayment" required onclick="Visacard()" />
</div>
<div class="mastercard">
<img src="media/png/mastercard.png" alt="mastercard" width="200" height="150" />
<input type="radio" name="payment" value="mastercard" id="mastercardpayment" onclick="Mastercard()" />
</div>
<div class="cardinformation">
<label for="cardno">Card No:*</label>
<input type="text" maxlength="16" id="cardno" placeholder="Enter your card number" required />
<label for="cvv">CVV:*</label>
<input type="text" maxlength="3" placeholder="Enter cvv number" id="cvv" required />
</div>
<div class="expiry">
<p>
Expiry:
<input type="date" id="expirydate" name="Date" placeholder="dd/mm/yyyy" required />
</p><!--Later put attribute min to today's date-->
</div>
</div>
<!--<div class="totalprice">
<p>Total:</p>
<p id="totalprice"></p>
</div>-->
<div class="lastbutton">
<button type="button" class="button" id="confirmorder" onclick="haveoverlay();CalculateAllTickets();myForm()">Checkout</button><!--calculates all ticket and popup-->
</div>
</fieldset>
</form>
</div>
</section>
</section>
<!--Extra attractions---------------------------------------------------------------------------------------------------------->
<section class="extraattractions">
<div class="otherattractionsdiv">
<p class="otherattractions">Other Attractions<br /> You May Like</p>
<hr />
</div>
<div class="alignmentattraction">
<img src="media/jpg/flyer.jpg" alt="Singapore Flyer" />
<div>
<p class="titleattraction">Singapore Flyer</p>
<hr />
<p class="textinextra">
Standing just 2.6 metres behind the tallest ferris wheel in the world,
get a bird's eye view of Singapore right in the heart of our tiny island.
</p>
</div>
<button type="button" class="button" onclick="location.href='iconic-landmarks.html'">Discover</button>
</div>
<div class="alignmentattraction">
<img src="media/jpg/GardensbyTheBay.jpg" alt="Gardens By The Bay" />
<div>
<p class="titleattraction">Gardens By The Bay</p>
<hr />
<p class="textinextra">
Discover a whole new world of plants at Gardens by the Bay
which features the world's largest glass greenhouse, the flower dome spanning over 1.28 hectares plants.
</p>
</div>
<button type="button" class="button" onclick="location.href='FloraAndFauna.html'">Discover</button>
</div>
<div class="alignmentattraction">
<img src="media/jpg/National Gallery(1).jpg" alt="National Gallery" />
<div>
<p class="titleattraction">National Gallery Singapore</p>
<hr />
<p class="textinextra">
Situated in the heart of Singapore's city centre,
National Gallery Singapore has the world's largest collection of modern Singapore and Southeast Asian art.
</p>
</div>
<button type="button" class="button" onclick="location.href='arts & culture.html'">Discover</button>
</div>
</section>
<!--Like what you've read?-->
<section class="like">
<div>
<div class="like1">
<img src="media/png/email.png" alt="email logo" width="30" height="30" />
<p class="likebig">Like what you've read?</p>
</div>
<div>
<p class="likesmall">Subscribe to our email newsletter!</p>
</div>
<div>
<button type="button" class="button" id="signup" onclick="haveoverlay1()">Sign Up</button>
</div>
</div>
</section>
<!--Contact Form------------------------------------------------------------------------------------------------------------->
<footer>
<section id="contact">
<div class="authorimage">