<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Fútbol Libre TV</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #101820;
color: #fff;
margin: 0;
padding: 0;
}
header {
background-color: #008000;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 30px;
}
.partido {
background-color: #1c1c1c;
margin: 20px;
padding: 15px;
border-radius: 10px;
}
.partido h2 {
margin: 0 0 10px;
font-size: 20px;
}
.boton-ver {
background-color: #008000;
color: white;
padding: 10px 15px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
}
footer {
text-align: center;
padding: 15px;
background-color: #000;
margin-top: 30px;
}
</style>
</head>
<body>
<header>
<h1>Fútbol Libre TV</h1>
</header>
<section class="partido">
<h2>Barcelona vs Real Madrid</h2>
<p>Transmisión en vivo - 3:00 PM</p>
<a class="boton-ver" href="https://tulinkdeejemplo.com" target="_blank">Ver Partido</a>
</section>
<section class="partido">
<h2>Argentina vs Brasil</h2>
<p>Transmisión en vivo - 5:00 PM</p>
<a class="boton-ver" href="https://otroejemplo.com" target="_blank">Ver Partido</a>
</section>
<footer>
<p>© 2025 Fútbol Libre TV - Solo enlaces externos</p>
</footer>
</body>
</html>
Comentarios
Publicar un comentario