tatvilweb/formula1/index.html

48 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Estadísticas F1</title>
<link rel="stylesheet" href="css/estilos.css">
</head>
<body>
<header>
<h1>Estadísticas F1</h1>
<h2 style="color: #bbbb00; border: 1px solid #bbbb00; padding: 10px; border-radius: 5px; width: fit-content; text-align: center;">PÁGINA EN CONSTRUCCIÓN</h2>
</header>
<section class="stat-card cuenta-atras">
<h3> Cuenta atrás para el GP de Australia 2026</h3>
<div id="countdown">
00d 00h 00m 00s
</div>
</section>
<main class="dashboard">
<section class="stat-card">
<h3 id="session-info">Pilotos</h3>
<table id="pilotos-table">
<thead>
<tr>
<th>#</th>
<th>Código</th>
<th>Nombre</th>
<th>Apellido</th>
<th>Escuderia</th>
<th>Nacionalidad</th>
</tr>
</thead>
<tbody>
<!-- Aquí se llenarán los pilotos -->
</tbody>
</table>
</section>
</main>
<script src="js/codigo.js"></script>
</body>
</html>