-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwetland_room.html
More file actions
126 lines (109 loc) · 4.51 KB
/
wetland_room.html
File metadata and controls
126 lines (109 loc) · 4.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat+Subrayada&display=swap" rel="stylesheet">
<title>Wetland Room Zoosort</title>
</head>
<body >
<main id="product">
<header>
<a href="./index.html"><img src="./images/logo3.png" alt="Zoosort logo"></a>
<nav class="headernav">
<ul>
<li><a href="./room.html">Room</a></li>
<li><a href="./activity.html">Activity</a></li>
<li><a href="./animals.html">Animals</a></li>
<li><a href="./resort.html">Resort</a></li>
<li><a href="./about_us.html">About Us</a></li>
</ul>
</nav>
</header>
<section class="video-container">
<video autoplay muted loop>
<source src="./images/Pexels-Videos-2087654.mp4" type="video/mp4">
</video>
</section>
<form>
<div id="booking-form">
<div class="form-item">
<label for="form-arrival-date">Arrival Date</label><br>
<input type="date" id="form-arrival-date">
</div>
<div class="form-item">
<label for="form-depature-date">Depature Date</label><br>
<input type="date" id="form-depature-date">
</div>
<div class="form-item">
<label for="form-number-of-guest">Guest</label><br>
<input type="number" id="form-number-of-guest" min="1" max="4">
</div>
<div class="form-item">
<label for="form-room_type">Room Type</label><br>
<select name="form-room_type" id="form-room_type">
<option></option>
<option>Underwater Room</option>
<option>Wetland Room</option>
<option>Cave Room</option>
<option>Grassland Room</option>
</select>
</div>
<div class="form-item">
<input type="button" id="form-availability" value="Book" onclick="window.alert('Your room has been booked.')">
</div>
</div>
</form>
<section class="content">
<nav class="breadcrumb">
<a href="./room.html">Room</a>
<p>/</p>
<a href="#">Wetland Room</a>
</nav>
<article class="product">
<h1 class="list-page-product-name">Wetland Room</h1>
<p>60sqm 2 Double Beds</p>
<hr>
<p class="list-page-product-discription">Obsessed with flamingos? This is the best place to be in the world. Located right next to the Flamingo Lake, you will enjoy a prepium view over Blackhorse Wetland and these lovely pink feathered birds.</p>
<section class="product-details">
<p>Features</p>
<ul>
<li>Premium view over Blackhorse Wetland</li>
<li>60sqm spacious room</li>
<li>Best bird sighting location</li>
<li>Flamingo sighting guarantee</li>
<li>Complimentary welcome champagne</li>
<li>Complimentary Wetland walking tour</li>
</ul>
<p>Amentities</p>
<ul>
<li>Bathrobe</li>
<li>Shampoo</li>
<li>Conditioner</li>
<li>Body soap</li>
<li>Cotton pads</li>
<li>Slippers</li>
<li>Mouthwash</li>
<li>Toothbrush</li>
<li>Hair-dryer</li>
</ul>
</section>
</article>
</section>
<footer>
<nav class="foottool">
<ul>
<li><a id="book-now" href="#">BOOK A ROOM</a></li>
<li><a id="activity-planner" href="#">ACTIVITY PLANNER</a></li>
<li><a id="contact-us" href="#">CONTACT US</a></li>
</ul>
</nav>
</footer>
</main>
<script src="./js/jquery-3.4.1.min.js"></script>
<script src="./js/script.js"></script>
<script src="./js/scrollClass.min.js"></script>
</body>
</html>