<!DOCTYPE html>
<html lang=“es”>
<head>
<meta charset=“UTF-8”>
<meta name=“viewport” content=“width=device-width, initial-scale=1.0”>
<title>Página de Deportes</title>
<link rel=“stylesheet” href=“styles.css”>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
header nav ul {
list-style: none;
padding: 0;
}
header nav ul li {
display: inline;
margin: 0 10px;
}
header nav ul li a {
color: #e9650d;
text-decoration: none;
}
.welcome {
text-align: center;
padding: 20px;
}
.gallery {
text-align: center;
padding: 20px;
}
.images {
display: flex;
justify-content: center;
gap: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Bienvenidos al Mundo del Deporte</h1>
<nav>
<ul>
<li><a href="#">Inicio</a></li>
<li><a href="#">Fútbol</a></li>
<li><a href="#">Baloncesto</a></li>
<li><a href="#">Tenis</a></li>
<li><a href="#">Contáctanos</a></li>
</ul>
</nav>
</header>
<section class="welcome">
<h2>Disfruta de los Mejores Deportes</h2>
<p>Explora noticias, imágenes y mucho más sobre los deportes que amas.</p>
</section>
<section class="gallery">
<h2>Galería de Imágenes Deportivas</h2>
<div class="images">
<img src="https://via.placeholder.com/300x200?text=Fútbol" alt="Fútbol">
<img src="https://via.placeholder.com/300x200?text=Baloncesto" alt="Baloncesto">
<img src="https://via.placeholder.com/300x200?text=Tenis" alt="Tenis">
</div>
</section>
<footer>
<p>© 2025 Página de Deportes | Todos los derechos reservados.</p>
</footer>
</body>
</html>
Curso de Frontend Developer