-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalentin.html
More file actions
33 lines (29 loc) · 923 Bytes
/
valentin.html
File metadata and controls
33 lines (29 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valentinstag-Spiel</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Hilf der Taube, ihre Liebe zu finden! ❤️</h1>
<div id="game-container">
<div id="player">🦜</div>
<div id="love">🐦</div>
<div class="obstacle" style="top: 100px; left: 150px;">🌳</div>
<div class="obstacle" style="top: 200px; left: 250px;">🧱</div>
</div>
<p id="message"></p>
<!-- Steuerung für Mobile -->
<div id="controls">
<button id="up">⬆️</button>
<div>
<button id="left">⬅️</button>
<button id="down">⬇️</button>
<button id="right">➡️</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>