34 lines
884 B
PHP
34 lines
884 B
PHP
<!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> |