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
/
dining.html
130 lines (108 loc) · 4.93 KB
/
dining.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Home - The Palms Colombo</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="script/scroll-hide.js"> </script>
</head>
<body>
<!-- Header -->
<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" class="active">Dining</a></li>
<li><a href="rooms.html">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/Dining/Carousal/dc1.jpg" width="100%" height="680px">
<img class="mySlides" src="Palms Images/Dining/Carousal/dc2.jpg" width="100%" height="680px">
<img class="mySlides" src="Palms Images/Dining/Carousal/dc3.jpg" width="100%" height="680px">
<img class="mySlides" src="Palms Images/Dining/Carousal/dc4.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>
<center> <h2> Unlocking a new social and dining scene in the city </h2> </center>
<br>
<center> <img src="Palms Images/Dining/Carousal/food.jpg" class="dine" alt="image" style="width:650px; height:325px;" /> </center>
<br>
<center> <p> Welcome to Colombo's most contemporary dining destination! <br> The Palms, Colombo,
delivers the best of Shangri-La’s signature Chinese restaurant, <br> Shang Palace, an exciting all-day
dining restaurant, featuring a retro-design steakhouse <br> and grill and a contemporary Sri Lankan restaurant and bar
boasting glorious views across the Indian Ocean. </p> </center>
<br>
<br>
<div class="content">
<div>
<center> <h2>TABLE ONE</h2> </center> <br>
<img src="Palms Images/Dining/tableone.jpg" class="dine" alt="image" style="width:1145px; height:730px;" />
<br>
<h3>International flavours with a local touch</h3>
<p>Reminiscent of the buzzing and vibrant atmosphere of Colombo’s markets,
the menu at Table One features a range of local dishes inspired by the island’s rich culinary culture,
with influences of traders from the Middle East, Malaysia and India,
as well as legacy elements from the Portuguese, Dutch and British colonial periods.</p> <br>
</div>
<div>
<center> <h2>SHANG PALACE</h2> </center> <br>
<img src="Palms Images/Dining/shang.jpg" class="dine" alt="image" style="width:1145px; height:730px;" />
<br>
<h3>The most authentic Chinese restaurant in the city</h3>
<p>The centrepiece of Shang Palace is the guest-facing, custom-made duck oven.
All duck orders are expertly cooked here and brought to the guest’s table to be carved.
The restaurant also has an open Dim Sum kitchen where guests can witness the delicate artistry at the hands of our master chefs,
as well as a market style crab kitchen and an in-house tea master who artfully performs tableside tea ceremonies. </p> <br>
</div>
<div>
<center> <h2>CAPITAL BAR & GRILL</h2> </center> <br>
<img src="Palms Images/Dining/capital.jpg" class="dine" alt="image" style="width:1145px; height:730px;" />
<br>
<h3>Retro-classic style and taste</h3>
<p>The signature Tomahawk steak, 1.3 kg of the most succulent meat available,
is carved tableside while the freshest Barramundi fish is baked to perfection.
The show kitchen allows guests to see the master chefs at work.
The restaurant’s extensive selection of whiskies,
fine wines and cocktails are paired perfectly with each meal by our expert servers. </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>