-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBars and drinks.php
More file actions
108 lines (107 loc) · 3.69 KB
/
Bars and drinks.php
File metadata and controls
108 lines (107 loc) · 3.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Velvet Lounge and Bar</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: url('images/cocktails.jpeg');
background-size: cover;
background-repeat: no-repeat;
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8); /* Adding a semi-transparent white background for better readability */
border-radius: 10px; /* Adding rounded corners to the container */
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Adding a subtle shadow effect */
}
a {
display: inline-block;
background-color: darkslategray;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
a:hover {
background-color: darkgrey;
}
img {
max-width: 100%;
height: auto;
display: block;
margin-top: 20px;
border-radius: 10px; /* Adding rounded corners to images */
}
h3 {
text-align: center;
color: white;
margin-top: 20px;
}
p {
color: #666;
text-align: justify;
margin-top: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table, th, td {
padding: 10px;
text-align: left;
}
th {
background-color: bisque;
}
th a, td a {
text-decoration: none;
color: white;
}
th a:hover, td a:hover {
color: #666;
}
</style>
</head>
<body>
<div class="container">
<a href="Booking.php">Book now</a>
<img src="longe_bar_banner.jpg" alt="Wine">
</div>
<h3>VELVET LOUNGE AND BAR</h3>
<div class="container">
<table>
<tr>
<td>
<img src="Artdeco interior bar.jpeg" alt="Bar">
</td>
<td valign="middle">
<p>Welcome to The Velvet Lounge, let the smooth melodies of live jazz music serenade your senses as you sip on expertly crafted cocktails, each one a masterpiece in its own right.</p>
<p>Allow our skilled bartenders to guide you on a journey through our extensive selection of spirits, from rare single malt whiskies to artisanal small-batch gins. Or perhaps you prefer to explore our curated wine list, showcasing the finest vintages from around the globe.</p>
<p>Whether you're seeking a romantic rendezvous or a lively night out with friends, The Velvet Lounge promises an unforgettable experience where every moment is steeped in sophistication and style.</p>
</td>
</tr>
</table>
<table>
<thead>
<tr>
<th><a href="index.php">Home</a></th>
<th><a href="restaurant.php">Restaurant</a></th>
<th><a href="resort.php">Resort</a></th>
<th><a href="Entertainment.php">Entertainment</a></th>
<th><a href="Outdoor Catering.php">Outdoor Catering</a></th>
</tr>
</thead>
</table>
</div>
</body>
</html>