inizio classifica

This commit is contained in:
2026-03-31 09:54:42 +02:00
parent 8c2d936710
commit 97c1bd5baa
+34
View File
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Classifica completa</title>
<style>
body {
font-family: "Arial";
}
table {
border-collapse: collapse;
}
td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<td>Posizione</td>
<td>Nome</td>
<td>Punteggio 1° fase</td>
<td>Punteggio 2° fase</td>
<td>Punteggio totale</td>
<td>Data di gioco</td>
</tr>
</thead>
</table>
</body>
</html>