//HTML
<!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="stylesheet" href="./style.css" />
<!-- <link rel="stylesheet" href="normalize.css"> -->
</head>
<body>
<header></header>
<main class="presentacion">
<h1>
Eleve tu negocio digital a otro nivel
<strong>con un Front-end de calidad!></strong>
</h1>
<p>
¡Hola! Soy Ana García, desarrolladora 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>
<a href="https://www.instagram.com">Instagram</a>
<a href="https://www.github.com">Github</a>
<img src="./foto.jpg" alt="Imagen de Ana Garcia trabajando">
</main>
<footer></footer>
</body>
</html>
// CSS
* {
margin: 0;
padding: 0;
}
body {
background-color: #000;
color: #f6f6f6;
height: 100vh;
box-sizing: border-box; /* Border-box sirve para que no se salga el elemento hijo del padre */
}
strong{
color: #22D4FD;
}
.presentacion {
display: flex;
align-items: center;
}
![]( )