<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portafolio</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<header class="header">
<nav class="header-nav">
<a class="header-nav-link" href="index.html">Home</a>
<a class="header-nav-link" href="about.html">Sobre mí</a>
</nav>
</header>
<main class="presentacion">
<section class="presentacion-texto">
<h1 class="presentacion-texto-titulo">Eleve tu negocio digital a otro nivel
<strong class="parrafo-destaque"> con un Front-end de calidad!</strong>
</h1>
<p class="presentacion-texto-parrafo">¡Hola! Soy Wilfredo Garzón, desarrollador Front-end con especialización en React, HTML y CSS.
Ayudo a pequeños negocios y diseñadores a llevar a cabo buenas ideas. ¿Hablamos?</p>
</section>
<img class="presentacion-imagen" src="./assets/imagen.jpg" alt="Imagen de Wilfredo Garzón" width="300" height="400">
</main>
<footer class="footer">
<p>Desarrollado por Wilfredo Garzón</p>
</footer>
</body>
</html>
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #000000;
color: #F6F6F6;
font-family: 'Montserrat', sans-serif;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.header {
padding: 20px 15%;
}
.header-nav {
display: flex;
gap: 80px;
}
.header-nav-link {
font-size: 24px;
font-weight: 600;
color: #22D4FD;
text-decoration: none;
}
.presentacion {
display: flex;
align-items: center;
justify-content: space-between;
padding: 3% 15%;
}
.presentacion-texto {
width: 60%;
display: flex;
flex-direction: column;
gap: 16px;
}
.presentacion-texto-titulo {
font-size: 36px;
font-family: 'Krona One', sans-serif;
font-weight: 400;
line-height: 1.5;
}
.parrafo-destaque {
color: #22D4FD;
}
.presentacion-texto-parrafo {
font-size: 22px;
line-height: 1.6;
}
.presentacion-imagen {
width: 300px;
height: 400px;
object-fit: cover;
}
.footer {
background-color: #22D4FD;
color: #000000;
text-align: center;
padding: 20px;
font-size: 24px;
}