29 lines
518 B
HTML
29 lines
518 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Hasen-Simulator</title>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
Hasen-Simulator des Zoo Herr Richtigmacher
|
|
</header>
|
|
|
|
<main>
|
|
<div id="monthDisplay">Monat: 1</div>
|
|
|
|
<button id="nextMonthButton">Nächster Monat ➜</button>
|
|
|
|
<div id="rabbitContainer"></div>
|
|
</main>
|
|
|
|
<script src="hasen.js"></script>
|
|
|
|
</body>
|
|
</html>
|