-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprecios.html
88 lines (81 loc) · 2.8 KB
/
precios.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="icon.png" />
<title>Precios_Viajaja</title>
</head>
<body>
<div class="todo">
<header class="header">
<figure class="logo">
<div class="menu">
<ul>
<a href="index.html">Home</a>
<a href="index.html#top">Top semana</a>
<a href="reserva.html#formulario">Reserva</a>
<a href="destinos.html">Destinos</a>
<a href="precios.html#precios" class="activo">Precios</a>
<a href="contacto.html">Contacto</a>
</ul>
</div>
</figure>
<div class="portada">
<h1>Viaja con una sonrisa ;)</h1>
<h3>Viajes felices de principio a fin y si es posible sin fin</h3>
<a class="button" href="destinos.html#des">Conoce más</a>
</div>
</header>
<section id="precios">
<h2 class="des" id="des">Destinos en oferta</h2>
<div class="tabla">
<table>
<thead>
<tr>
<th>Descripción</th>
<th>País</th>
<th>Temporada</th>
<th>Precio</th>
<th>Precio de socios</th>
</tr>
</thead>
<tbody>
<tr>
<td>Escapate al Norte y mira la Aurora Boreal</td>
<td>Finlandia</td><td>Invierno</td><td>1002.99€</td><td>940.99€</td></tr>
<tr>
<td>Visita el país donde todavía hay una Emperatriz</td>
<td>Reino Unido</td><td>Primavera</td><td>729.99€</td><td>680.99€</td></tr>
<tr>
<td>Vive la cultura asiatica más extendida y amada del mundo</td>
<td>Japón</td><td>Verano</td><td>1310€</td><td>1110€</td></tr>
<tr>
<td>Vistita el país con la mejor gastromia y playas doradas</td>
<td>España</td><td>Otoño</td><td>410€</td><td rowspan="3">350€</td></tr>
<tr><td colspan="5" rowspan="1"><h3>Los mejores destinos y precios en las temporadas de invierno, primavera, verano y otoño.</h3></td></tr>
</tbody>
</table>
</div>
</section>
<footer class="footer">
<div class="cont-footer">
<div class="contacto">
<img src="images/footer.png" width="200" alt="logo">
<a href="tel:+34912919299"><strong>Telefono</strong><span>912919299</span></a>
<a href="mailto:info@viajaja.com"><strong>Email</strong><span>info@viajaja.com</span></a>
</div>
<div>
<iframe width="460" height="300" src="https://www.youtube.com/embed/ioYqFtr2D0Q" frameborder="0" gesture="media" allow="encrypted-media" allowfullscreen></iframe>
</div>
<div class="comentarios">
<fieldset>
<legend><h2><strong>COMENTARIOS</strong></h2></legend>
<textarea name="comentarios" id="comentarios" cols="40" rows="11"></textarea><br>
<a href="index.html"><input type="submit" required value="Enviarlo" class="button" /></a>
</fieldset>
</div>
</div>
</footer>
</div>
</body>