-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (131 loc) · 4.82 KB
/
Copy pathindex.html
File metadata and controls
139 lines (131 loc) · 4.82 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Heijitsu">
<meta name="description" content="The home page contains some basic information and reservation form of Disneyland.">
<meta name="keywords" content="information, video, reservation form, disneyland, disney">
<title>Home Page - Disneyland Hong Kong</title>
<link rel="stylesheet" href="./css/default.css" media="all" type="text/css">
<link rel="stylesheet" href="./css/navigation.css" media="all" type="text/css">
<link rel="stylesheet" href="./css/homepage.css" media="all" type="text/css">
<script src="https://personal.cs.cityu.edu.hk/~cs2204/cs2204cw3.js"></script>
<script src="./js/homepage.js"></script>
</head>
<body>
<!-- header -->
<header>
<div id="header" class="light_border">
<div id="header_banner">
<img src="./images/logo.png" alt="Disneyland Logo">
</div>
<div id="header_text">
<h1>DisneyLand</h1>
</div>
</div>
</header>
<div id="welcome" class="dark_border">
<p>Welcome</p>
</div>
<br><br><br>
<!-- navigation bar -->
<nav>
<img src="./images/compass.png" alt="Navigation" class="nav_icon">
<ul class="nav_menu">
<li><a href="./index.html">Home</a></li>
<li><a href="./html/order.html">Order</a></li>
<li><a href="./html/design.html">About Us</a></li>
</ul>
</nav>
<!-- start of index_body -->
<div id="index_body">
<!-- infomation-->
<div id="info" class="light_border">
<dl>
<dt>Address</dt>
<dd>Hong Kong's Disneyland Resort,<br>
Penny's Bay, Lautau Island,<br>
Hong Kong</dd>
<dt>Tel</dt>
<dd>852-3553-8888</dd>
<dt>Business Hours</dt>
<dd>10:30 AM - 9:00 PM, closed on Tuesdays</dd>
<dt>Brief Introduction</dt>
<dd>
<ul>
<li>1st popular amusement park in Hong Kong</li>
<li>2nd Disneyland in Asia</li>
<li>3 themed hotels</li>
<li>40+ dining options</li>
<li>50+ attractions</li>
<li>6 regular parades</li>
<li>7 themed lands</li>
<li>∞ Infinite Fun With Family and Friends</li>
</ul>
</dd>
<dt>Location</dt>
<dd><img src="./images/map.jpg" alt="Location"></dd>
</dl>
<div id="order_button">
<a href="./html/order.html" target=_blank>
<img src="./images/order_button.png" alt="Order Button">
</a>
</div>
</div>
<div id="contents">
<!-- video -->
<div id="promotion_information" class="light_border">
<h3 id="message"></h3>
<div id="dvideo">
<video id="vid" controls="controls" autoplay="autoplay" muted="muted" src="https://personal.cs.cityu.edu.hk/~cs2204/video/Castle.mp4" onended="switchVideo()">
Your browser does not support the video tag.
</video> <!-- loop video cannot trigger onended event -->
</div>
</div>
<br><br><br>
<!-- form -->
<div id="form">
<form action="#" method="get" id="home_form">
<fieldset id="reservation_form">
<legend>Booking information</legend>
<div class="form_content">
<label for="Date">Date</label>
<input type="date" name="Date" id="Date">
</div>
<div class="form_content">
<label for="Time">Time</label>
<select name="Time" id="Time">
<option value="8:00-10:00AM">8:00-10:00AM</option>
<option value="10:00-12:00PM">10:00-12:00PM</option>
<option value="12:00-2:00PM">12:00-2:00PM</option>
<option value="2:00-4:00PM">2:00-4:00PM</option>
<option value="4:00-6:00PM">4:00-6:00PM</option>
<option value="6:00-8:00PM">6:00-8:00PM</option>
</select>
</div>
<div class="form_content">
<label for="visitor">No.of Visitors</label>
<input type="number" name="visitor" value="" id="visitor" min="0">
</div>
<br>
<p id="form_error"></p>
<div class="form_button">
<input type="submit" value="Check Availability">
<input type="reset" value="Reset">
</div>
</fieldset>
</form>
</div>
</div>
</div>
<br>
<!-- end of index_body -->
<!-- footer -->
<footer class="dark_border">
<p>©CityU 2023 - sources of images and text from official website of Hong Kong Disneyland, Wikipedia and Courtesy of Icon pack by
<a href="https://icons8.com/">Icons8</a> - designed by
<a href="./html/design.html">Heijitsu</a>
</p>
</footer>
</body>
</html>