-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeteorologia.html
31 lines (30 loc) · 1.07 KB
/
meteorologia.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
<!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>Previsión meteorológica Barcelona</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css">
<link rel="stylesheet" type="text/css" href="estilo/layout.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="js/weather.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>
</header>
<main>
<h1>Previsiones meteorológicas para los próximos 7 días</h1>
</main>
</body>
</HTML>