Bed in 4-Bed Male Dormitory with shared bahtroom
Our Shared Male-only Dorm offers comfort in a more relaxed, social setting. Shared bathroom facilities are located nearby outside the room. All bunk beds have power sockets to recharge after a full day. Lockers are also available (padlock not included).
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Private Room Facilities
</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.table-container {
max-width: 600px;
margin: 0 auto;
}
.table-title {
color: #555;
font-size: 1.5em;
margin-bottom: 10px;
}
.facilities {
display: flex;
flex-wrap: wrap;
list-style-type: none;
padding: 0;
margin: 0;
}
.facility {
width: 50%; /* Twee faciliteiten naast elkaar */
box-sizing: border-box;
padding: 10px 0;
border-bottom: 1px solid #ccc;
}
@media (max-width: 600px) {
.facility {
width: 100%; /* Eén faciliteit per regel op kleine schermen */
}
}
</style>
<div class="table-container">
<div class="table-title">
Private Room Facilities
</div>
<ul class="facilities">
<li class="facility">
Non-smoking rooms
</li>
<li class="facility">
Free Wi-Fi
</li>
<li class="facility">
Bed linen included
</li>
<li class="facility">
Lockers(padlocks not included)
</li>
<li class="facility">
Key card access
</li>
<li class="facility">
Free city map
</li>
<li class="facility">
Hair dryers in shared bathrooms
</li>
</ul>
</div>
