-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook.html
195 lines (158 loc) · 7.66 KB
/
book.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DECO1400Web inplementation draft</title>
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Krona+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Limelight&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Pattaya&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Pattaya&display=swap" rel="stylesheet">
</head>
<body class="book">
<nav id="main-menu">
<div class="logostyle">
<p style="float: left;margin-left: 5%;margin-top: 12px;">Logo</p>
<p style="float: right;margin-right: 5%;;margin-top: 12px;">Sign up/Log in</p>
</div>
</nav>
<nav id="pac-menu">
<div class="pacstyle">
<div class="menu-div"><a class="menu-a" href="treehouse.html">TreeHouse</a></div>
<div class="menu-div"><a class="menu-a" href="underwater.html">UnderwaterHouse</a></div>
<div class="menu-div"><a class="menu-a" href="glass.html">GlassHouse</a></div>
<div class="menu-div"><a class="menu-a" href="book.html">Book</a></div>
</div>
</nav>
<!-- <div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="images/Pandachengdu.jpg" alt="main pic" style="width:100%">
<div class="text">Caption Text</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="images/kangroo.jpeg" alt="kangroo pic" style="width:100%">
<div class="text">Caption Two</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 3</div>
<img src="images/treehouse.jpg" alt="treehouse pic" style="width:100%">
<div class="text">Caption Three</div>
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div> -->
<!-- Slideshow container -->
<!-- Slideshow container -->
<div id="slides">
<div class="slideshow-container">
<!-- Full-width images with number and caption text -->
<div class="mySlides change" id="slideimg">
<div class="numbertext">1 / 3</div>
<img src="images/Pandachengdu.jpg" alt="main pic" class="Imgstyle">
</div>
<div class="mySlides change" id="slideimg">
<div class="numbertext">2 / 3</div>
<img src="images/kangroo.jpeg" alt="kangroo pic" class="Imgstyle">
</div>
<div class="mySlides change" id="slideimg">
<div class="numbertext">3 / 3</div>
<img src="images/treehouse.jpg" alt="treehouse pic" class="Imgstyle">
</div>
<a class="prev" onclick="plusSlides(-1)">❮</a>
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</div>
<header id="book-header">
<section id="BookIntro">
<article>
<p id="bookname">Book</p>
<p id="bookinfo">Please select the number of rooms you would like to live
in and the corresponding number of activities and special food.</p>
</article>
</section>
<section>
<fieldset>
<legend>
Your Details
</legend>
<div class="form-item">
<label for="form-full-name">Name:</label>
<div class="form-element">
<input type="text" name="full_name" id="form-full-name" placeholder="First and last names" />
</div>
</div>
<div class="form-item">
<label for="form-state">Room:</label>
<div class="form-element">
<select name="form-state">
<option>TreeHouse</option>
<option>UnderWaterHouse</option>
<option>GlassHouse</option>
</select>
</div>
</div>
<div class="form-item">
<label for="form-full-name">How many people do u have:</label>
<div class="form-element">
<input type="text" name="num_people" id="form-full-people" placeholder="Numbers of people" />
</div>
</div>
<div class="form-item">
<label for="form-phone">Phone:</label>
<div class="form-element">
<input type="text" name="phone" id="form-phone" placeholder="Phone number including area code" />
</div>
</div>
<div class="form-item">
<label for="form-email">Email:</label>
<div class="form-element">
<input type="text" name="email" id="form-email" placeholder="Must be a valid email address" />
</div>
</div>
<div class="form-item">
<label>Special Food&Activities:</label>
<div class="form-element">
<label for="form-food">
<input type="checkbox" id="myCheck" onclick="myFunction()" name="food"> Food
</label>
<label for="form-actv">
<input type="checkbox" id="form-act" onclick="myFunction()" name="activ"> Activities
</label>
</div>
</div>
<p id="textcheck" style="display:none">Checkbox is CHECKED!</p>
</fieldset>
</section>
<div class="buttom">
<button id="bookbookbuttom" onclick="javascript:alert('Here is your bill!')">Check out</button>
</div>
</header>
<footer id="book-footer">
<nav id="footer">
<div class="footerstyle">
<div class="menu-div">Email: [email protected]</div>
<div class="menu-div">Address: The mysterious forest No.1</div>
<a class="menu-div" href="reference.html">#Copy right&reference</a>
<a class="menu-div" href="index.html">Back To The Main Page</a>
</div>
</nav>
</footer>
<script src='js/js.js'>
</script>
</body>
</html>