-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvasna.html
More file actions
358 lines (322 loc) · 13 KB
/
vasna.html
File metadata and controls
358 lines (322 loc) · 13 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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Turf Details</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->
<style>
/* Add CSS for Turf Details */
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; /* Changed font to Helvetica Neue */
margin: 0;
padding: 0;
color: #333;
}
.navigation{
color:black;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #ffffff;
display: flex;
justify-content: space-between;
padding: 10px 20px;
align-items: center;
}
.topnav a {
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 14px;
}
.topnav a:hover {
background-color: #056c08;
color: rgb(202, 208, 38);
}
/* Background container with blur effect */
.background-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-image: url('bg2.jpg');
background-size: cover;
background-position: center;
filter: blur(3px);
-webkit-filter: blur(3px);
}
.container {
max-width: 1400px; /* Increased container width */
margin: 20px auto;
padding: 20px;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
border-radius: 15px; /* Increased border radius */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Added box shadow */
}
h1 {
font-size: 40px; /* Increased font size */
margin-bottom: 20px;
color: #4caf50; /* Green color */
grid-column: 1 / -1;
text-align: center;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.gallery-container {
overflow-x: auto;
white-space: nowrap;
margin-bottom: 20px;
background-color: #fff;
padding: 20px; /* Increased padding */
border-radius: 15px; /* Increased border radius */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Added box shadow */
grid-column: 1 / -1;
}
.turf-image {
display: inline-block;
width: 100%; /* Made image containers wider */
max-width: 400px; /* Maximum width for image containers */
margin-right: 20px;
border-radius: 15px; /* Increased border radius */
overflow: hidden;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.turf-image img {
width: 100%;
height: auto;
border-radius: 15px; /* Increased border radius */
}
.turf-details {
background-color: #fff;
padding: 20px;
border-radius: 15px; /* Increased border radius */
margin-bottom: 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Added box shadow */
grid-column: 1 / span 1;
}
.address, .amenities, .rate, .rating, .additional-info, .customer-review {
margin-bottom: 20px;
padding: 20px;
background-color: #fff;
border-radius: 15px; /* Increased border radius */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.rating {
display: flex;
align-items: center;
}
.stars {
color: #fdd835;
margin-right: 5px;
}
.reviews {
margin-left: 5px;
color: #888;
}
.customer-review {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.customer-review .user {
background-color: #fff;
padding: 20px; /* Increased padding */
border-radius: 15px; /* Increased border radius */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.customer-review .user h4 {
margin-bottom: 10px;
color: #2a892d;
}
.book-now {
background-color: #2d8530;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
width: 100%; /* Make the button full width */
}
.book-now:hover {
background-color: #267c2b;
}
.map-container {
background-color: #fff;
border-radius: 15px; /* Increased border radius */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Added box shadow */
grid-column: 2 / span 1;
overflow: hidden;
}
.map {
width: 100%;
height: 300px;
}
.offers {
background-color: #2d8b30;
padding: 20px;
border-radius: 15px; /* Increased border radius */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Added box shadow */
text-align: center;
color: #fff;
margin-bottom: 20px;
font-family: 'Roboto', sans-serif; /* Changed font to Roboto */
background: linear-gradient(to bottom, #6fd88b, #efefef); /* Gradient background */
}
.offer {
background-color: white; /* Semi-transparent white background */
padding: 20px; /* Increased padding */
border-radius: 15px; /* Increased border radius */
margin-bottom: 20px; /* Increased margin */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease; /* Added transition */
}
.offer:hover {
transform: translateY(-5px); /* Add hover effect */
}
.offer-title {
font-weight: bold;
font-size: 24px; /* Increased font size */
color: #45a049; /* Changed offer title color */
font-family: 'Pacifico', cursive; /* Changed font to Pacifico */
margin: 0; /* Removed margin */
padding-bottom: 10px; /* Added padding */
border-bottom: 2px solid #fff; /* Added border bottom */
}
</style>
</head>
<body>
<!-- Navigation bar -->
<div class="topnav">
<div>
<a href="homepage.html"><img src="image/Logo copy.png" alt="BookMyTurf Logo" style="height: 30px;"></a>
</div>
<div class="Navigation">
<a href="login.html">Login/SignUp</a>
<a href="listbooking.html">ListYourTurf</a>
<a href="turfs.html">Turfs</a>
<a href="slot_booking.html">Slot Avability</a>
<a href="About_Us.html">About Us</a>
</div>
</div>
<div class="background-container"></div> <!-- Background container -->
<div class="container">
<h1 style="text-align: center; position: relative; left: 20px; color: #16661a;">Skycolor Turf</h1>
<div class="gallery-container">
<div class="turf-image">
<img src="image/v21.png" alt="Turf Image 1">
</div>
<div class="turf-image">
<img src="image/v22.png" alt="Turf Image 2">
</div>
<div class="turf-image">
<img src="image/v23.png" alt="Turf Image 3">
</div>
<div class="turf-image">
<img src="image/v24.png" alt="Turf Image 3">
</div>
<!-- Add more images as needed -->
</div>
<div class="turf-details">
<h3>Address</h3>
<p class="address">Lal Bagh Main Rd, Srinivas Colony, Sudhama Nagar, Bengaluru, Karnataka 560027</p>
<div class="amenities">
<h3>Amenities</h3>
<ul>
<li>Parking</li>
<li>Washrooms</li>
<li>Change Rooms</li>
<!-- Add more amenities as needed -->
</ul>
</div>
<div class="rate">
<h3>Rate (for 1/2 hour)</h3>
<p>Rs.350</p> <!-- Adjust rate as needed -->
</div>
<div class="rating">
<h3>Rating: </h3>
<span class="stars">★★★★★</span> <!-- Adjust star rating as needed -->
<span class="reviews">(5 reviews)</span> <!-- Adjust number of reviews as needed -->
</div>
<h3>Additional Information</h3>
<p>Contact: +91 1234567890</p>
<p>Opening Hours: Mon-Sat 8:00 AM - 10:00 PM</p>
<!-- Add more information as needed -->
</div>
<div class="map-container">
<br> <h3> Map</h3>
<div class="map">
<!-- Corrected map embed code with the new coordinates -->
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d6222.499766467325!2d77.59226365582208!3d12.962431042488179!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bae1671750ff2d5%3A0x6dcd0434e1c13d79!2sTiento%20Sports!5e0!3m2!1sen!2sin!4v1647837781908!5m2!1sen!2sin" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</div>
<div class="additional-info">
<h3>Customer Reviews</h3>
<div class="customer-review">
<div class="user">
<h4>John Smith</h4>
<div class="rating">
<span class="stars">★★★★★</span>
</div>
<p>Great turf with excellent facilities!</p>
</div>
<div class="user">
<h4>Rachael Thomas</h4>
<div class="rating">
<span class="stars">★★★☆☆</span>
</div>
<p>Nice place, but could improve cleanliness.</p>
</div>
<!-- Add more reviews as needed -->
</div>
<br><br><br><br>
<center><a href="slot_booking.html"><button style="height: 50px; width: 500px;" class="book-now">Book your slot</button></center></a>
</div>
<div class="offers">
<h2 style="font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;">Offers Available</h2><br>
<div class="offer">
<p class="offer-title">Offer 1: Get Rs.100 off on your first booking!</p>
</div><br><br>
<div class="offer">
<p class="offer-title">Offer 2: Avail 20% discount on group bookings (4 or more people)!</p>
</div><br><br>
<div class="offer">
<p class="offer-title">Offer 3: Special discount for students on weekdays!</p>
</div>
</div>
</div>
<footer style="background-color:#000000;">
<div class="footer-content">
<div class="footer-logo">
<img src="L1.png" style="height: 40px; width: auto;" alt="Footer Logo">
</div>
<div class="footer-links">
<ul>
<li><a href="homepage.html">Home</a></li>
<li><a href="turfs.css">Turfs</a></li>
<li><a href="login.html">Join Us</a></li>
<li><a href="About_Us.html">About Us</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-social">
<ul>
<li><a href="https://www.facebook.com/" target="_blank"><img src="Img/F.png" alt="Facebook"></a></li>
<li><a href="https://twitter.com/?lang=en" target="_blank"><img src="Img/" alt="Twitter"></a></li>
<li><a href="https://www.instagram.com/" target="_blank"><img src="Img/I.png" alt="Instagram"></a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 RegalPlay. All rights reserved.</p>
</div>
</footer>
</body>
</html>