tatvilweb/formula1/index.html

90 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<<<<<<< HEAD
<title>Estadísticas F1</title>
<link rel="stylesheet" href="css/estilos.css">
=======
<title>F1 Stats Pro - Panel de Control</title>
<link rel="stylesheet" href="css/f1.css">
>>>>>>> 658e2fe3b0adeb6a1d7dc50826d2f2693462a09c
</head>
<body>
<header>
<h1>Estadísticas F1</h1>
<<<<<<< HEAD
<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>
=======
</header>
<section class="stat-card cuenta-atras">
<h3 > Cuenta atrás para el GP de Australia 2026</h3>
>>>>>>> 658e2fe3b0adeb6a1d7dc50826d2f2693462a09c
<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>
<<<<<<< HEAD
<th>Código</th>
<th>Nombre</th>
<th>Apellido</th>
<th>Escuderia</th>
<th>Nacionalidad</th>
=======
<th>Nombre</th>
<th>Apellido</th>
<th>Equipo</th>
<th>Nacionalidad</th>
<th>Código</th>
>>>>>>> 658e2fe3b0adeb6a1d7dc50826d2f2693462a09c
</tr>
</thead>
<tbody>
<!-- Aquí se llenarán los pilotos -->
</tbody>
</table>
</section>
<<<<<<< HEAD
</main>
<script src="js/codigo.js"></script>
=======
<section class="stat-card">
<h3 id="session-info">Equipos</h3>
<table id="equipos-table">
<thead>
<tr>
<th>#</th>
<th>Nombre</th>
<th>País</th>
<th>Fundación</th>
</tr>
</thead>
<tbody>
<!-- Aquí se llenarán los equipos -->
</tbody>
</table>
</section>
</main>
<script src="js/f1.js"></script>
>>>>>>> 658e2fe3b0adeb6a1d7dc50826d2f2693462a09c
</body>
</html>