HTML
<!DOCTYPE html>
<html lang="es-co">
<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">
</head>
<body>
<header> </header>
<main>
<h1>Viviendo la mejor experiencia <strong> en Alura LATAM! </strong> con sacrificio</h1>
<img src="img/1.jpg" id="mi-imagen">
<blockquote>
<button><a href="https://www.instagram.com/">Instagram</a></button>
<button><a href="https://github.com/"> Github</a></button>
</blockquote>
<p>
¡Hola soy Jonathan Julio! y estoy dando lo
mejor de mi para sacar este sueño adelante
</p>
</main>
<footer></footer>
</body>
</html>
CSS
head{
display: flex;
justify-content: center;
align-items: center;
}
main{
text-align: center;
}
body {
background-color: #1679AB;
color: #FFB1B1;
}
strong {
color: #102C57;
}
#mi-imagen{
width: 300px;
height: 300px;
justify-content: right;
}
button{
background-color: #FFCBCB;
}
a{
color: #102C57;
}