-
Notifications
You must be signed in to change notification settings - Fork 0
/
accommodation.html
455 lines (386 loc) · 17.7 KB
/
accommodation.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
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
<!DOCTYPE html>
<html lang="en">
<head>
<title> BDA 2024 - UOH </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="CSS/style.css">
<link rel="stylesheet" type="text/css" media="all" href="CSS/committee.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
/* Make the image fully responsive */
.carousel-inner img {
width: 100%;
}
.dropdown-item:hover {
background-color: maroon;
}
@media only screen and (max-width: 849px) {
.para {
font: 11px !important;
}
.carousel-caption {
padding-top: 10px !important;
padding-bottom: 0px !important;
}
.carousel-image {
height: 100%px;
width: 100%;
}
.header-text {
font-size: 13px;
text-shadow: 2.2px 2.2px 5px black;
}
.header-main {
font-size: 15px;
text-shadow: 2.2px 2.2px 5px black;
}
}
@media only screen and (min-width: 850px) {
.para {
font: 11px !important;
}
.carousel-caption {
padding-top: 10px !important;
padding-bottom: 0px !important;
}
.carousel-image {
height: 100%;
width: 100%;
}
.header-text {
font-size: 25px;
text-shadow: 4px 4px 5px black;
}
.header-main {
font-size: 30px;
text-shadow: 4px 4px 5px black;
}
}
.side-container {
position: absolute;
right: 10%;
left: 60%;
}
.bide-container {
position: absolute;
right: 45%;
left: 8%;
}
.abide-container {
right: 45%;
left: 8%;
}
.register-link {
font-size: 15px; /* Make the text bigger */
color: #ff5722; /* Bright color (orange-red) */
font-weight: bold; /* Make the text bold */
text-decoration: none; /* Remove underline */
}
.register-link:hover {
text-decoration: underline; /* Add underline on hover */
}
/* Container for the two images */
.image-row {
display: flex;
justify-content: center;
gap: 20px; /* Space between images */
}
/* Container for each image and its header */
.image-container {
width: 100%;
max-width: 375px; /* Set max width for each image container */
text-align: center; /* Center align the text above */
}
/* Header text styling */
.image-header {
font-size: 18px;
font-weight: bold;
padding: 10px;
color: #333;
background-color: rgba(0, 0, 0, 0.1); /* Optional background */
border-radius: 5px 5px 0 0; /* Rounded corners on top */
text-decoration: none;
display: block;
}
/* Image styling */
.image-container img {
width: 100%;
height: 200px; /* Set height for uniformity */
display: block;
object-fit: cover; /* Ensures the image covers the container */
border-radius: 0 0 5px 5px; /* Rounded corners on bottom */
}
/* Optional hover effect on header */
.image-header:hover {
background-color: rgba(0, 0, 0, 0.2);
color: #000;
}
.content {
background-color: #fff;
padding: 10px 20px;
border: 1px solid #ddd;
border-radius: 5px;
max-width: 800px;
margin: 20px auto;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
color: #0066cc;
font-size: 20px;
text-align: center;
margin: 0 0 10px;
}
h2 {
font-size: 16px;
color: #444;
margin: 10px 0 5px;
}
.flex-container {
display: flex;
justify-content: space-between;
align-items: flex-end; /* Aligns items at the bottom */
gap: 20px;
position: relative;
}
.flex-item {
flex: 1;
padding: 0;
}
.flex-item ul {
list-style-type: none;
padding: 0;
margin: 0;
}
ul {
margin: 0;
padding: 0;
}
li {
margin: 2px 0;
}
p {
margin: 5px 0;
line-height: 1.4;
}
.contact-info {
font-weight: bold;
}
a {
color: #0066cc;
text-decoration: none;
}
/* Separator styling */
.separator {
width: 2px; /* Adjust width to make it more visible */
background-color: #ddd;
height: 60px; /* Set a fixed height for the separator */
margin: 0 auto; /* Center the separator */
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-tag">
<div class="" id="navbarNav"></div>
<ul class="navbar-nav container unordered-list">
<li class="nav-item nav-list">
<a class="nav-link nav-link-tag" href="index.html" style="color: white!Important">Home
</a>
</li>
<li class="nav-item nav-list dropdown">
<a class="nav-link nav-link-tag dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false" style="color: white!Important">
Committees
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"
style=" background-color: maroon!Important; ">
<a class="dropdown-item" href="organizing_committee.html" style="color: white!Important">Organizing committee</a>
<a class="dropdown-item" href="steering_committee.html" style="color: white!Important">Steering committee</a>
<a class="dropdown-item" href="program_committee.html" style="color: white!Important">Program committee</a>
</div>
</li>
<li class="nav-item nav-list">
<a class="nav-link nav-link-tag" href="speakers.html" style="color: white!Important">Speakers</a>
</li>
<li class="nav-item nav-list dropdown">
<a class="nav-link nav-link-tag dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false" style="color: white!Important">
Calls For
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"
style=" background-color: maroon!Important; ">
<a class="dropdown-item" href="cfp.html" style="color: white!Important">Call For Research Papers</a>
<a class="dropdown-item" href="cft.html" style="color: white!Important">Call For Tutorials</a>
<a class="dropdown-item" href="cfw.html" style="color: white!Important">Call For Workshops</a>
</div>
</li>
<li class="nav-item nav-list dropdown">
<a class="nav-link nav-link-tag dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false" style="color: white!Important">
For Authors
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"
style=" background-color: maroon!Important; ">
<a class="dropdown-item" href="paper_submission.html" style="color: white!Important">Paper Submission</a>
<a class="dropdown-item" href="important_dates.html" style="color: white!Important">Important Dates</a>
<a class="dropdown-item" href="camera_ready.html" style="color: white!Important">Camera-Ready instructions</a>
</div>
</li>
<li class="nav-item nav-list dropdown">
<a class="nav-link nav-link-tag dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false" style="color: white!Important">
Program Schedule
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"
style=" background-color: maroon!Important; ">
<a class="dropdown-item" href="conference_schedule.html" style="color: white!Important">Conference Schedule</a>
<a class="dropdown-item" href="accepted_papers.html" style="color: white!Important">Accepted Papers</a>
</div>
</li>
<li class="nav-item nav-list dropdown">
<a class="nav-link nav-link-tag dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false" style="color: white!Important">
Attendees
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"
style=" background-color: maroon!Important; ">
<a class="dropdown-item" href="registration.html" style="color: white!Important">Registration</a>
<a class="dropdown-item" href="accommodation.html" style="color: white!Important">Accommodation</a>
<a class="dropdown-item" href="venue.html" style="color: white!Important">Venue</a>
</div>
</li>
<li class="nav-item nav-list dropdown">
<a class="nav-link nav-link-tag dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false" style="color: white!Important">
Workshops & Tutorials
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink"
style=" background-color: maroon!Important; ">
<a class="dropdown-item" href="workshops.html" style="color: white!Important">Workshops</a>
<a class="dropdown-item" href="tutorials.html" style="color: white!Important">Tutorials</a>
</div>
</li>
</ul>
</div>
</nav>
<article class="page" itemscope itemtype="https://schema.org/CreativeWork">
<meta itemprop="headline" content="Accommodation">
<meta itemprop="description" content="Accommodation">
<div class="page__inner-wrap">
<header>
<!-- <h1 id="page-title" class="page__title" itemprop="headline">Accommodation Schedule -->
<!-- </h1> -->
</header>
<section class="page__content" itemprop="text">
<h2></h2>
<p>Limited accommodation is available for the registered authors/participants on the campus of University of Hyderabad. Those who require this accommodation may fill <a href="https://docs.google.com/forms/d/e/1FAIpQLSdfB6Ou8PZ_UXyV3SZQcsYw8vg_RncUiKvMZ3JWqcBBl2rQBw/viewform?usp=sf_link" target="_blank" class="register-link">this form</a>. Accommodation is available on FCFS basis and other priority considerations.</p>
<p>At the time of occupying the room, charges may be paid by the participants at the reception of the guest house. Room charges may vary from <b>INR 700 to INR 1300</b> for single bed and <b>INR 800 to INR 1400</b> for double bed based on the venue of accommodation. Proof of identity (Aadhar/PAN/any Govt. issued ID card) needs to be shown on arrival at the guest house.</p>
<br>
<p>You can also book rooms at Hotel Ishtara, which is closer to the university campus. Details are as follows:</p>
<div class="content">
<h2>Hotel Name: Hotel Isthara, Survey no 165 - 167, NCB Enclave, Gachibowli, Hyderabad</h2>
<div class="flex-container">
<div class="flex-item">
<h2>Single Occupancy</h2>
<ul>
<li>Deluxe room - 2,200/- per day</li>
<li>Suite - 2,500/- per day</li>
</ul>
</div>
<div class="separator"></div>
<div class="flex-item">
<h2>Double Occupancy</h2>
<ul>
<li>Deluxe room - 2,400/- per day</li>
<li>Suite - 2,700/- per day</li>
</ul>
</div>
</div>
<p><strong>Additional Facilities:</strong> Rates include complimentary breakfast, Wi-Fi, and taxes.</p>
<!-- <p><strong>Eligibility:</strong> Applicable for all official guests invited by the university, including visiting faculty, conference participants, and dignitaries.</p> -->
<p><strong>Booking Procedure:</strong> Contact Hotel Isthara directly and quote the university's reference on Rate Contract signed dated 10th October 2024.</p>
<!-- <p><strong>Validity:</strong> Valid from 10th October 2024 to 9th October 2025.</p> -->
<p><strong>Contact:</strong> Mr. Azam Faroqui <strong>Mobile:</strong> 799 799 1000</p>
<p>Email: <a href="mailto:azam.faroqui@isthara.com">azam.faroqui@isthara.com</a> & <a href="mailto:reservations@isthara.com">reservations@isthara.com</a></p>
</div>
<p>In addition to these options, rooms are also available at discounted price at <a href="https://hotelathomesuites.com/">Hotel At home Suites</a> <b></b> for BDA 2024 participants. </p>
<p>Below is a compilation of recommended hotels conveniently located (within a radius of 6-7 kms). If you require further details or wish to make reservations, please feel free to explore the official websites of the respective hotels. </p>
<div class="image-row">
<div class="image-container">
<a href="https://ellaahotel.com/" class="image-header" target="_blank">Ellaa Hotel</a>
<img src="images/accommodation/ellaa.jpeg" alt="Ellaa Hotel">
</div>
<div class="image-container">
<a href="https://www.radissonhotels.com/en-us/hotels/radisson-hyderabad-hitec-city" class="image-header" target="_blank">Radisson Hotel</a>
<img src="images/accommodation/radison.avif" alt="Radisson Hotel">
</div>
</div>
<br><br>
<div class="image-row">
<div class="image-container">
<a href="https://hotelathomesuites.com/" class="image-header" target="_blank">Hotel At Home Suites</a>
<img src="images/accommodation/at-homes.jpg" alt="Hotel At Home Suites">
</div>
<div class="image-container">
<a href="https://www.tridenthotels.com/hotels-in-hyderabad/?utm_source=GMBlisting&utm_medium=organic" class="image-header" target="_blank">Trident Hyderabad</a>
<img src="images/accommodation/trident.jpg" alt="Trident Hyderabad">
</div>
</div>
<br><br>
<div class="image-row">
<div class="image-container">
<a href="https://hotelsiliconville.com/" class="image-header" target="_blank">Hotel Siliconville</a>
<img src="images/accommodation/silicorville.jpeg" alt="Hotel Siliconville">
</div>
<div class="image-container">
<a href="https://www.marriott.com/en-us/hotels/hydmd-le-meridien-hyderabad/overview/?scid=f2ae0541-1279-4f24-b197-a979c79310b0" class="image-header" target="_blank">Le Meridien Hyderabad</a>
<img src="images/accommodation/lemaridian.webp" alt="Le Meridien Hyderabad">
</div>
</div>
<br><br>
<div class="image-row">
<div class="image-container">
<a href="https://www.hyatt.com/en-US/hotel/india/hyatt-hyderabad-gachibowli/hydhy?src=corp_lclb_gmb_seo_hydhy" class="image-header" target="_blank">Hyatt Hyderabad Gachibowli</a>
<img src="images/accommodation/hyatt.webp" alt="Hyatt Hyderabad Gachibowli">
</div>
<div class="image-container">
<a href="https://www.marriott.com/en-us/hotels/hydsi-sheraton-hyderabad-hotel/overview/?scid=f2ae0541-1279-4f24-b197-a979c79310b0" class="image-header" target="_blank">Sheraton Hyderabad Hotel</a>
<img src="images/accommodation/sheraton.jpeg" alt="Sheraton Hyderabad Hotel">
</div>
</div>
<br><br>
<div class="image-row">
<div class="image-container">
<a href="https://gachibowli.deccanserai.com/" class="image-header" target="_blank">Hotel Deccan Serai Grande</a>
<img src="images/accommodation/deccan-serai.webp" alt="Hotel Deccan Serai Grande">
</div>
<div class="image-container">
<a href="https://www.marriott.com/en-us/hotels/hydlk-itc-kohenur-a-luxury-collection-hotel-hyderabad/overview/?scid=f2ae0541-1279-4f24-b197-a979c79310b0" class="image-header" target="_blank">ITC Kohenur</a>
<img src="images/accommodation/kohenur.jpg" alt="ITC Kohenur">
</div>
</div>
<br><br>
<div class="image-row">
<div class="image-container">
<a href="https://www.marriott.com/en-us/hotels/hydwi-the-westin-hyderabad-mindspace/overview/?scid=f2ae0541-1279-4f24-b197-a979c79310b0" class="image-header" target="_blank">The Westin Hyderabad Mindspace</a>
<img src="images/accommodation/westin.webp" alt="The Westin Hyderabad Mindspace">
</div>
<div class="image-container">
<a href="https://www.lemontreehotels.com/lemon-tree-hotel/hyderabad/gachibowli-hyderabad#prettyPhoto" class="image-header" target="_blank"> Lemon Tree Hotel</a>
<img src="images/accommodation/lemon.jpg" alt=" Lemon Tree Hotel">
</div>
</div>
<br><br>
<p>You can also find other hotels around university campus on various websites such as Booking.com, Agoda.com, makemytrip.com, etc.</p>
<p>For more information, please write us at <a href= "mailto: bda2024_accomm@uohyd.ac.in">bda2024_accomm@uohyd.ac.in</a>. </p>
<br><br>
</section>
</article>
</body>
</html>