<!DOCTYPE html>
<html lang="es-pr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>desafio_portafolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header></header>
<main class="presentacion">
<section class="presentacion__contenido">
<h1 class="presentacion__contenido__titulo">
<strong>MI PORTAFOLIO</strong>
</h1>
<p class="presentacion__contenido__texto">
¡Hola! Soy estudiante de Oracle Next Education, especializándome en HTML y CSS. Aquí desarrollo mis ejercicios prácticos para dominar el Front-end. ¡Acompáñame en este viaje tecnológico!
</p>
<p class="presentacion__contenido__texto">
<strong>Sígueme a través de Linkedin y Github</strong>
</p>
<a href="https://www.linkedin.com/in/mithostech/">Linkedin</a>
<a href="https://github.com/mithostech">Github</a>
</section>
<img src="foto yerme.png" alt="Foto mithostech">
</main>
<footer></footer>
</body>
</html>
/* 4 - Importando fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat&display=swap');
/* Reset CSS */
* {
margin: 0;
padding: 0;
}
body {
background-color: #cb958e;
color: #F6F6F6;
height: 100vh;
box-sizing: border-box;
}
/* 1 - Espaciado y márgenes con Flexbox */
.presentacion {
display: flex;
align-items: center;
justify-content: space-between;
margin: 10%;
}
/* 2 - Definiendo el tamaño de la sección de texto */
.presentacion__contenido {
width: 615px;
}
/* 3 y 5 - Ajustando tamaños de títulos y aplicando fuentes */
.presentacion__contenido__titulo {
font-size: 36px;
font-family: 'Krona One', sans-serif;
color: #007BFF;
}
/* 3 y 5 - Ajustando tamaños de textos y aplicando fuentes */
.presentacion__contenido__texto {
font-size: 24px;
font-family: 'Montserrat', sans-serif;
color: #DFFF00;
}
/* Estilos adicionales */
strong {
color: #332f4e;
}
/* Corrección: padding tenía typo (5xp -> 5px) */
p {
margin: 10px;
border: 2px solid black;
padding: 5px;
}