From 6b9c51fe3e9fa5d58abb099870731436573419ca Mon Sep 17 00:00:00 2001 From: TheErrorExe <161362055+TheErrorExe@users.noreply.github.com> Date: Mon, 6 Jan 2025 16:06:34 +0100 Subject: [PATCH] Update index.html --- index.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index cfc0333..0ef55e5 100644 --- a/index.html +++ b/index.html @@ -26,17 +26,17 @@

Warum Blockattack?

-
+
Feature 1

Gebietsclaiming

Schütze dein Land vor anderen Spielern und baue es aus.

-
+
Feature 2

PVP-Kämpfe

Tritt in spannenden Kämpfen gegen andere Spieler an!

-
+
Feature 3

Events

Erlebe regelmäßige Events und spannende Abenteuer.

@@ -50,7 +50,8 @@ document.querySelectorAll('.card').forEach(card => { card.addEventListener('click', () => { const featureName = card.getAttribute('data-feature'); - alert(`Du hast das Feature "${featureName}" ausgewählt!`); + const featureDescription = card.getAttribute('data-description'); + alert(`Feature: "${featureName}"\n\nBeschreibung: ${featureDescription}`); }); });