favicon
This commit is contained in:
parent
b2967c9ed3
commit
c0b0dc875a
|
|
@ -0,0 +1,14 @@
|
|||
SELECT
|
||||
DATE(fecha) AS dia,
|
||||
MAX(temp_max) AS temp_max,
|
||||
MIN(temp_min) AS temp_min,
|
||||
AVG(humedad) AS humedad,
|
||||
SUM(lluvia) AS lluvia,
|
||||
AVG(nubes) AS nubes,
|
||||
AVG(viento_velocidad) AS viento_velocidad,
|
||||
AVG(viento_direccion) AS viento_direccion
|
||||
FROM weather
|
||||
WHERE ciudad LIKE CONCAT('%', 'madrid', '%')
|
||||
AND DATE(fecha) BETWEEN '2026-02-01' AND '2026-02-17'
|
||||
GROUP BY DATE(fecha)
|
||||
ORDER BY DATE(fecha);
|
||||
BIN
favicon.ico
BIN
favicon.ico
Binary file not shown.
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
|
|
@ -6,7 +6,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<link rel="icon" href="img/eltiempo-logo.png" type="image/x-icon">
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="css/estilos.css">
|
||||
<h1>Temario TAI – AGE</h1>
|
||||
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
<script src="js/piedra.js" defer></script>
|
||||
<link rel="stylesheet" href="css/piedra-papel-tijera.css">
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
</head>
|
||||
<body class="bg-black text-light">
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue