Files
CSWPROK/index.html
2025-11-26 14:22:48 +01:00

20 lines
543 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Hasen-Simulator Zoo</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>🐇 Hasen-Simulator</h1>
<p>Klicke auf den Button, um einen Monat weiterzugehen. Die Anzahl der Hasenpaare folgt der Fibonacci-Reihe.</p>
<button id="nextBtn">Nächster Monat</button>
<div id="container">
<h2>Monat: <span id="monat">1</span></h2>
<h3>Hasenpaare: <span id="anzahl">1</span></h3>
<div id="hasenArea"></div>
</div>
<script src="script.js"></script>
</body>
</html>