Aggiunta schermata di caricamento e timer per la partita

This commit is contained in:
2026-03-23 09:43:02 +01:00
parent 7ee94cb046
commit 4f2c2ffd19
4 changed files with 123 additions and 16 deletions
+14
View File
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Punti</title>
</head>
<body>
<p>Punti: <span id="punti">0</span></p>
<script>
document.getElementById("punti").innerHTML = localStorage.getItem("punteggio");
</script>
</body>
</html>