-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (92 loc) · 2.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotel GOMPER</title>
<style>
body {
background-color: lightblue;
text-align: center;
}
h1 {
color: blue;
}
table,
th,
td {
border: 1px solid blue;
border-collapse: collapse;
}
.centrado {
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<h1>Hotel Gomper</h1>
<h2>Un lugar donde querras vivir</h2>
<p>
<img src="hotel.jpg" alt="" width="300">
</p>
<p>
Situado en el corazón de la ciudad, a pocos pasos de las
principales atracciones turísticas, el Hotel Paraíso del Sol
combina comodidad, elegancia y un servicio excepcional.
Disfruta de habitaciones modernas y acogedoras, equipadas con
todas las comodidades necesarias para una estancia inolvidable.
</p>
<div class="centrado">
<ul>
<li>Habitaciones con vista panorámica y balcón privado.
</li>
<li>
Wi-Fi de alta velocidad gratuito en todas las áreas.
</li>
<li>
Piscina al aire libre y gimnasio totalmente equipado.
</li>
<li>
Restaurante gourmet con una selección de platos internacionales.
</li>
<li>
Servicio de spa para garantizar tu relajación total.
</li>
</ul>
</div>
<p>
Encuentranos en <a href="https://www.turismorural.com" target="_blank">Turismo Rural</a>
</p>
<h3>
Lista de precios
</h3>
<div class="centrado">
<table>
<tr>
<th>Habitacion</th>
<th>Temporada Baja</th>
<th>Temporada Alta</th>
</tr>
<tr>
<td>Individual</td>
<td>40$</td>
<td>60$</td>
</tr>
<tr>
<td>Doble</td>
<td>50$</td>
<td>70$</td>
</tr>
<tr>
<td>Triple</td>
<td>60$</td>
<td>80$</td>
</tr>
</table>
</div>
<p>
<a href="reserva.html">Haga su reserva</a>
</p>
</body>
</html>