28 lines
886 B
HTML
28 lines
886 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="styles.css"> <!-- Verweis auf die eigene CSS-Datei -->
|
|
<link rel="stylesheet" href="https://matcha.mizu.sh/matcha.css">
|
|
<title>Space Status</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="logo-container">
|
|
<img src="logo.png" alt="Un Hack Bar Logo" class="logo" onclick="gotounhbsite()">
|
|
</div>
|
|
<h1>Space Status</h1>
|
|
</header>
|
|
<main>
|
|
<section id="status">
|
|
<h2>Status: <span id="space-status">Lade...</span></h2>
|
|
<p>Verbrauchte Watt: <span id="power-consumption">Lade...</span></p>
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<p>Powered by SpaceAPI</p>
|
|
</footer>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|