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

39 lines
1.2 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="wi wi-day-cloudy"></i></td>
<td colspan="3" class="aktuell">Aktuelles Wetter:<br><span id="weather_str">Bedeckt</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">-7</span>&deg;C</div></td>
<td class="icon"><i id="icon" class="wi wi-humidity"></i></td>
<td class="hum"><span id="hum">69%</span></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>