-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
180 lines (162 loc) · 4.82 KB
/
list.html
File metadata and controls
180 lines (162 loc) · 4.82 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
<!DOCTYPE html>
<html>
<head>
<style>
@import url("https://fonts.googleapis.com/css?family=Assistant' rel='stylesheet'");
.view{
display:flex;
justify-content: center;
align-items:center ;
flex-wrap:wrap;
background-size:cover;
text-align:center;
font-family: 'Assistant';
}
.bkc{
background-color: #f8f4E9;
}
.hotel{
display:inline-block;
width: 30%;
margin: 1%;
text-align: center;
border: 2px solid #ccc;
border-radius: 5px;
padding: 10px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.hotel-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 5px;
}
.hotel-name {
font-weight: bold;
margin-bottom: 10px;
}
.highlight {
background-color: #f8f8f8;
border: 1px solid #eee;
padding: 5px;
margin-bottom: 5px;
}
.highlight:hover{
transform:scale(1.1,1.1);
color:crimson;
}
.book-button {
display: inline-block;
padding: 5px 10px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
}
.book-button:hover{
transform:scale(1.2,1.2);
}
/* Footer */
.footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: start;
display: flex;
flex-grow:1;
justify-content: center;
align-items: center;
}
.footer p{
margin-right:90px;
}
.footer img {
width: 30px;
margin: 0 10px;
}
a:hover{
transform:scale(1.2,1.2);
}
a{
margin-right:15px;
}
</style>
</head>
<body>
<div class="bkc">
<div class="view">
<div class="hotel">
<img class="hotel-image" src="im.jpg" alt="Hotel A">
<h3 class="hotel-name">Blue Moon</h3>
<div class="highlight">Free Wi-Fi</div>
<div class="highlight">Swimming Pool</div>
<div class="highlight">Breakfast Included</div>
<a class="book-button" href="Rtypes.html">Book</a>
</div>
<div class="hotel">
<img class="hotel-image" src="ritz.jpeg" alt="Hotel B">
<h3 class="hotel-name"> The Ritz</h3>
<div class="highlight">City Center Location</div>
<div class="highlight">Gym Facilities</div>
<div class="highlight">Free Wi-Fi</div>
<a class="book-button" href="Rtypes.html">Book</a>
</div>
<div class="hotel">
<img class="hotel-image" src="h33.webp" alt="Hotel C">
<h3 class="hotel-name">The Sea View</h3>
<div class="highlight">Sea View Rooms</div>
<div class="highlight">Spa & Wellness Center</div>
<div class="highlight">Free Wi-Fi</div>
<a class="book-button" href="Rtypes.html">Book</a>
</div>
<div class="hotel">
<img class="hotel-image" src="h2.webp" alt="Hotel D">
<h3 class="hotel-name">Leisure</h3>
<div class="highlight">Complimentary Breakfast</div>
<div class="highlight">24-Hour Room Service</div>
<div class="highlight">Free Wi-Fi</div>
<a class="book-button" href="Rtypes.html">Book</a>
</div>
<div class="hotel">
<img class="hotel-image" src="hh.webp" alt="Hotel E">
<h3 class="hotel-name">The Palace</h3>
<div class="highlight">Airport Shuttle Service</div>
<div class="highlight">Restaurant & Bar</div>
<div class="highlight">Free Wi-Fi</div>
<a class="book-button" href="Rtypes.html">Book</a>
</div>
<div class="hotel">
<img class="hotel-image" src="tri.jpg" alt="Hotel F">
<h3 class="hotel-name">Trident</h3>
<div class="highlight">Gym</div>
<div class="highlight">Luxurious Rooms</div>
<div class="highlight">Free Wi-Fi</div>
<a class="book-button" href="Rtypes.html">Book</a>
</div>
<div class="hotel">
<img class="hotel-image" src="h11.jpg" alt="Hotel F">
<h3 class="hotel-name">Raffles Hotel</h3>
<div class="highlight">Business Center</div>
<div class="highlight">Golf Court</div>
<div class="highlight">Spa</div>
<a class="book-button" href="Rtypes.html">Book</a>
</div>
<div class="hotel">
<img class="hotel-image" src="las.jpeg" alt="Hotel F">
<h3 class="hotel-name">Hotel Aqua</h3>
<div class="highlight">Business Center</div>
<div class="highlight">Gym</div>
<div class="highlight">Free Wi-Fi</div>
<a class="book-button" href="Rtypes.html">Book</a>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>© 2023 URBAN STAY. All rights reserved.</p>
<a href="https://www.instagram.com/"><img src="s1.webp" alt="Instagram"></a>
<a href="https://www.facebook.com/"><img src="s2.png" alt="Facebook"></a>
<a href="https://twitter.com/"><img src="s3.webp" alt="Twitter"></a>
</div>
</div>
</body>
</html>