CÓDIGO HTML:
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portafolio de Felix</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">Mi Portafolio</div>
<nav>
<ul>
<li><a href="#inicio">Inicio</a></li>
<li><a href="#proyectos">Proyectos</a></li>
<li><a href="#contacto">Contacto</a></li>
</ul>
</nav>
</header>
<main>
<h1>Bienvenidos a mi <strong>Portafolio</strong></h1>
<p>Hola, soy Felix. Explore mis proyectos y conoce más sobre mis trabajos.</p>
<img src="recursos/data_science.jpg" alt="Imagen de un proyecto">
<div class="boton">
<a href="https://www.instagram.com/">Instagram</a>
<a href="https://github.com/felixortega1">GitHub</a>
</div>
</main>
<footer>
<p>© 2025 Felix. Todos los derechos reservados.</p>
<p> <strong>Email:</strong> felix@email.com | <strong>Celular:</strong> +51 987 654 321</p>
</footer>
</body>
</html>
CÓDIGO CSS:
body{
background-color: black;
color: #f6f6f6;
}
strong{
color: #22d4fd;
}