Files
Felix Zösch 07c290a453 Initial commit: Backup der Webseiten
- zoesch.de
- blitzkiste.net
- gruene-hassberge (norbert.zoesch.de)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-13 01:17:15 +01:00

62 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wetter</title>
<link href="css/custom.css" rel="stylesheet">
<link href="css/weather-icons.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald:400,700|Roboto:400,500,700" rel="stylesheet">
</head>
<body>
<div class="weather">
<table>
<tbody>
<tr>
<td class="icon"><i id="icon" class=""></i></td>
<td colspan="3" class="aktuell">Aktuelles Wetter:<br><span id="weather_str"></span></td>
</tr>
</tbody>
</table>
<div class="space"></div>
<table>
<tbody>
<tr>
<td class="icon"><i id="icon" class="wi wi-thermometer"></i></td>
<td class="temp"><span id="temp"></span><small>&deg;C</small></div></td>
<td class="icon"><i id="icon" class="wi wi-humidity"></i></td>
<td class="hum"><span id="hum"></span></td>
</tr>
</tbody>
</table>
<div class="space"></div>
<table>
<tbody>
<tr>
<td class="icon"><i id="icon_f" class=""></i></td>
<td colspan="3" class="forecast">Wetter für morgen:<br><span id="forecast_str"></span></td>
</tr>
</tbody>
</table>
<div class="space"></div>
<table>
<tbody>
<tr>
<td class="icon"><i class="wi wi-thermometer"></i><i class="wi wi-direction-up"></i></td>
<td class="temp_high"><span id="temp_high"></span><small>&deg;C</small></div></td>
<td class="icon"><i class="wi wi-thermometer-exterior"></i><i class="wi wi-direction-down"></i></td>
<td class="temp_low"><span id="temp_low"></span><small>&deg;C</small></td>
</tr>
</tbody>
</table>
</div>
<script src="js/weather.js"></script>
<script src="js/forecast.js"></script>
</body>
</html>