This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrooms.html
131 lines (104 loc) · 4.76 KB
/
rooms.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Rooms - The Palms Colombo</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/indexnew.css" rel="stylesheet">
<script src="script/scroll-hide.js"> </script>
</head>
<body>
<div class="header" id="header">
<div class="container">
<div class="site-name-container">
<a href="index.html" class="site-name">The Palms Colombo</a>
<nav class="nav">
<ul>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="dining.html">Dining</a></li>
<li><a href="rooms.html" class="active">Rooms</a></li>
<li><a href="booking.php">Booking</a></li>
<li><a href="index.php">Home</a></li>
</ul>
</nav>
</div>
</div>
</div>
<br>
<div class="slide">
<img class="mySlides" src="Palms Images/Carousal/c1.jpg" width="100%" height="680px">
<img class="mySlides" src="Palms Images/Carousal/c2.jpg" width="100%" height="680px">
<img class="mySlides" src="Palms Images/Carousal/c3.jpg" width="100%" height="680px">
<img class="mySlides" src="Palms Images/Carousal/c4.jpg" width="100%" height="680px">
</div>
<!-- Script for Carosel -->
<script>
var myIndex = 0;
carousel();
function carousel() {
var i;
var x = document.getElementsByClassName("mySlides");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
myIndex++;
if (myIndex > x.length) {myIndex = 1}
x[myIndex-1].style.display = "block";
setTimeout(carousel, 5000); // Change image every 5 seconds
}
</script>
<br>
<br>
<br>
<div class="content">
<div>
<center> <h2>DELUXE LAKE VIEW ROOM</h2> </center> <br>
<img src="Palms Images/Rooms/DELUXE LAKE VIEW ROOM/lakeview.jpg" class="dine" alt="image" style="width:1145px; height:730px;" />
<br>
<h3>Tasteful interiors, lake panoramas</h3>
<p>Deluxe Lake View Rooms offer space and comfort with thoughtful contemporary design
and local Sri Lankan touches. All rooms offer exceptional views over the Beira Lake and the city beyond.</p> <br>
</div>
<div>
<center> <h2>DELUXE OCEAN VIEW ROOM</h2> </center> <br>
<img src="Palms Images/Rooms/DELUXE OCEAN VIEW ROOM/oceanview.jpg" class="dine" alt="image" style="width:1145px; height:730px;" />
<br>
<h3>Sophisticated style, stunning ocean vistas</h3>
<p>Deluxe Ocean View Rooms are beautifully appointed with a contemporary design and local Sri Lankan touches.
All rooms look out over the Indian Ocean and Galle Face Green, presenting some of the best views in the city.</p> <br>
</div>
<div>
<center> <h2>PREMIER BALCONY ROOM</h2> </center> <br>
<img src="Palms Images/Rooms/PREMIER BALCONY ROOM/pbalconyview.jpg" class="dine" alt="image" style="width:1145px; height:730px;" />
<br>
<h3>Private balcony, stunning city views</h3>
<p>Premier Balcony Rooms all feature a spacious balcony that offers views of the city, the Indian Ocean and Beira Lake.
The rooms are elegantly appointed and feature a thoughtful contemporary design, light colours,
rich fabrics, and balconies with cosy outdoor seating.</p> <br>
</div>
<div>
<center> <h2>PREMIER OCEAN VIEW ROOM</h2> </center> <br>
<img src="Palms Images/Rooms/PREMIER OCEAN VIEW ROOM/poceanview.jpg" class="dine" alt="image" style="width:1145px; height:730px;" />
<br>
<h3>Luxurious space, unparalleled ocean views</h3>
<p>Premier Ocean View Rooms offer stylish comfort with the luxury of space.
The rooms feature a thoughtful contemporary design with light colours and rich fabrics.
In addition, these rooms feature panoramic views of the Indian Ocean.</p> <br>
</div>
</div>
</div>
<footer class="footer">
<p class="footer-heading">Find us on</p>
<p class="footer-links">
<img class="footer-social-icons" src="icons/facebook.png" width="50px" />
<img class="footer-social-icons" src="icons/twitter.png" width="50px" />
<img class="footer-social-icons" src="icons/instagram.png" width="50px" />
<img class="footer-social-icons" src="icons/youtube.png" width="50px" />
</p>
<p class="footer-company-name">The Palms Colombo © 2018</p>
</footer>
</body>
</html>
</body>
</html>