finalizzazione html e js della fase 1

This commit is contained in:
2026-03-30 13:35:46 +02:00
parent a884ee5dc4
commit 6736d1acd9
5 changed files with 238 additions and 415 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>