-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (59 loc) · 2.05 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="description" content="Practica Extraordinaria SEW">
<meta name="keywords" content="HTML,CSS">
<meta name="author" content="Moises Garcia Lopez">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Barcelona</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css">
<link rel="stylesheet" type="text/css" href="estilo/layout.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<script src="https://unpkg.com/leaflet-image/leaflet-image.js"></script>
</head>
<body>
<header>
<nav>
<a href="index.html">Página principal</a>
<a href="gastronomia.html">Gastronomía</a>
<a href="rutas.html">Rutas</a>
<a href="meteorologia.html">Meteorología</a>
<a href="juego.html">Juego</a>
<a href="php/reservas.php">Reservas</a>
</nav>
<h1>Home</h1>
</header>
<main>
<section>
<h2>Recursos turísticos Cataluña</h2>
<picture>
<source media="(max-width: 799px)" srcset="multimedia/img/1b-movil.jpg">
<source media="(min-width: 800px)" srcset="multimedia/img/1b.jpg">
<img src="multimedia/img/1b.jpg" alt="Imagen del carrusel">
</picture>
</section>
<section>
<h2>Tiempo en Barcelona</h2>
<p>Se muestra el tiempo de Barcelona para el dia de hoy</p>
</section>
<section>
<h2>Mapa de Cataluña</h2>
</section>
<section>
<h2>Noticias</h2>
<button>Buscar noticias</button>
</section>
</main>
<footer>
<a href="https://validator.w3.org/check?uri=referer"><img
src="https://www.w3.org/html/logo/badge/html5-badge-h-solo.png" alt="HTML5 Válido" title="HTML5 Válido"
height="64" width="63"></a>
<a href="http://jigsaw.w3.org/css-validator/check/referer">
<img src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" height="31" width="88"></a>
</footer>
<script src="js/index.js"></script>
</body>
</html>