FEE_MathRunner/index.html

49 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2024-06-27 09:21:15 +02:00
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="MathRunner" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/layout.css">
<title>MathRunner</title>
</head>
<body>
<div id="spielRaum">
2024-07-04 10:23:32 +02:00
<div id="rechnungen" class="flexbox">
2024-06-27 09:21:15 +02:00
2024-08-22 15:20:37 +02:00
<div id="rechnung1">
<div id="rechnung1Text">*5</div>
2024-08-31 19:38:24 +02:00
<div id="hitbox1"></div>
2024-08-22 15:20:37 +02:00
</div>
2024-07-04 11:15:55 +02:00
2024-08-22 15:20:37 +02:00
<div id="rechnung2">
<div id="rechnung2Text">+5</div>
2024-08-31 19:38:24 +02:00
<div id="hitbox2"></div>
2024-08-22 15:20:37 +02:00
</div>
2024-07-04 10:23:32 +02:00
</div>
2024-06-27 09:28:30 +02:00
<div id="tom">
<img src="pics/tom_1.png" alt="tom">
2024-06-27 09:33:13 +02:00
</div>
<div id="fuchs">
2024-08-29 08:19:38 +02:00
<div id="fuchsZahl">0</div>
2024-06-27 09:33:13 +02:00
<img src="pics/fuchs_1.png" alt="fuchs">
</div>
<div id="enemy">
2024-09-01 12:58:17 +02:00
<div id="enemyZahl">100</div>
2024-06-27 09:33:13 +02:00
<img src="pics/enemy_1.png" alt="Gegner">
2024-06-27 09:28:30 +02:00
</div>
2024-09-01 19:20:47 +02:00
2024-09-01 19:58:05 +02:00
<div id="winText">Hurra du hast das Müllmonster besiegt</div>
<div id="loseText">Oh nein, das Müllmonster war zu stark</div>
2024-09-01 19:20:47 +02:00
<button id="restartButton">Neustart</button>
2024-06-27 09:28:30 +02:00
2024-06-27 09:21:15 +02:00
</div>
2024-08-25 18:13:50 +02:00
<Script src="js/rechnungen.js"></Script>
2024-06-27 09:28:30 +02:00
<Script src="js/funktionen.js"></Script>
<Script src="js/allg.js"></Script>
2024-06-27 09:21:15 +02:00
</body>
</html>