HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="styles.css">
<title>Portafolio de Marco Rangel</title>
</head>
<body>
<section class="presentacion">
<div class="presentacion__contenido">
<h1 class="presentacion__contenido__titulo">Eleva tu negocio digital a otro nivel <br> <strong>con un Front-end de calidad!</strong></h1>
<p class="presentacion__contenido__texto">¡Hola! Soy Marco Rangel, desarrollador Back-end con especialización en PHP, NodeJs, PHP y Bases de datos. Ayudo a pequeños negocios y diseñadores a llevar a cabo buenas ideas. ¿Hablamos?</p>
<button class="boton-redes">Instagram</button>
<button class="boton-redes">GitHub</button>
<button class="boton-redes">LinkedIn</button>
<button class="boton-redes">X</button>
</div>
<img src="robocop.jpg" alt="Imagen de Robocop siendo muy badass" class="presentacion__imagen">
</section>
</body>
</html>
###########################################
CSS
/* Importando fuentes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:wght@400;700&display=swap');
body {
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
background-color: #111;
color: #fff;
}
.presentacion {
display: flex;
align-items: center;
justify-content: space-between;
margin: 10%;
}
.presentacion__contenido {
width: 60%;
}
.presentacion__contenido__titulo {
font-family: 'Krona One', sans-serif;
font-size: 2.5rem;
margin-bottom: 20px;
}
.presentacion__contenido__texto {
font-family: 'Montserrat', sans-serif;
font-size: 1.2rem;
line-height: 1.5;
margin-bottom: 20px;
}
.boton-redes {
background-color: #007BFF;
color: #fff;
border: none;
padding: 10px 20px;
margin-right: 10px;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
.boton-redes:hover {
background-color: #0056b3;
}
.presentacion__imagen {
max-width: 30%;
border-radius: 10px;
}