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">
</head>
<body>
<header></header>
<main>
<h1>
¡Aprendiendo junto a <strong>Alura Latam!</strong>
</h1>
<p>
¡Hola! Soy Anderson Estrada, y estoy realizando este <strong>Challenge de Alura Latam</strong>
para entrar al bootcamp de ciencia de datos.
</p>
<a href="https://github.com/Afes-reop/challenge-amigo-secreto_esp-main.git">GitHub</a>
<img src="alura.jpeg" alt="Alura Challenge"
</main>
<footer></footer>
</body>
</html>
CSS:
body {
background-color: rgb(114, 174, 172);
color: white;
}
main{
background-color: rgb(156, 67, 12);
color: white;
text-align: center;
}
h1,h3,p{
font-family: Arial, Helvetica, sans-serif;
font-style:normal;
}
p{
font-size: 20px;
column-gap: 20px;
width: 40%;
text-align:center;
margin:auto;
}
img {
width: 500px;
height: auto;
display: block;
margin: auto;
border-style: solid;
}
a{
display: inline-block;
font-size: 20px;
padding: 10px 20px;
background-color: #000000;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
color: #41d08b;
}
h1, p{
margin-bottom: 40px;
}
img, a, h3 {
margin-bottom: 20px;
}
strong{
color: #79ecf5;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', ;
}
Resultado: