lnh/index.html

64 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Classement LNH mais dans un autre univers</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Saison: <select id="season"></select></h1>
<p>
<span class="legende up"></span> Promotion
<span class="legende down"></span> Relégation
</p>
<p>
<table>
<thead>
<tr>
<th colspan="11">Division 1</th>
</tr>
<tr>
<th></th>
<th>Nom</th>
<th>PJ</th>
<th>W</th>
<th>L</th>
<th>T</th>
<th>OT</th>
<th>GF</th>
<th>GA</th>
<th>P</th>
<th>P%</th>
</tr>
</thead>
<tbody id="div0"></tbody>
</table>
</p>
<p>
<table>
<thead>
<tr>
<th colspan="11">Division 2</th>
</tr>
<tr>
<th></th>
<th>Nom</th>
<th>PJ</th>
<th>W</th>
<th>L</th>
<th>T</th>
<th>OT</th>
<th>GF</th>
<th>GA</th>
<th>P</th>
<th>P%</th>
</tr>
</thead>
<tbody id="div1"></tbody>
</table>
</p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/json2html/2.2.3/json2html.min.js"></script>
<script src="index.js"></script>
</body>
</html>