30 lines
966 B
HTML
30 lines
966 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Chicken Run - Start</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="start-screen">
|
|
<!-- Bild über dem Titel hinzufügen -->
|
|
<img src="img/titel.jpg" alt="Titelbild" class="title-image">
|
|
|
|
<h1>Chicken Run</h1>
|
|
<div class="menu">
|
|
<button id="start-game" class="menu-button">Start Game</button>
|
|
<button id="high-score" class="menu-button">High Score</button>
|
|
</div>
|
|
|
|
<!-- Bilder links unten und rechts unten hinzufügen -->
|
|
<div class="bottom-images">
|
|
<img src="img/p1.png" alt="Bild links" class="bottom-image left">
|
|
<img src="img/p2.png" alt="Bild rechts" class="bottom-image right">
|
|
</div>
|
|
</div>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|