HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi Portafolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 class="nombre">Tu Nombre</h1>
<p>Desarrollador Web | Diseñador | Creador de Contenido</p>
<nav>
<ul>
<li><a href="https://linkedin.com" class="enlace-red">LinkedIn</a></li>
<li><a href="https://github.com" class="enlace-red">GitHub</a></li>
<li><a href="https://twitter.com" class="enlace-red">Twitter</a></li>
</ul>
</nav>
</header>
</body>
</html>
CSS
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.nombre {
font-size: 2em;
color: #333;
transition: all 0.3s ease-in-out;
}
.nombre:hover {
color: #007bff;
transform: scale(1.1);
}
.enlace-red {
text-decoration: none;
color: #333;
font-weight: bold;
transition: color 0.3s ease-in-out;
}
.enlace-red:hover {
color: #ff6600;
text-decoration: underline;
}