Aprendiendo Y Explorando
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MI Hijo Y yo</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<p>Momentos Magicos</p>
<a href="https://www.instagram.com/">Instagram</a>
</header>
<main>
<h1> ¡Hola! Soy <strong>Jhonatan Bustos,</strong> y el es mi hijo <strong> Jhosep Bustos</strong>
Somos grandes amigos, es hermosa experiencia que me brinda; <Strong>DIA A DIA</STRong>!
</h1>
<p> Dia de Cine </p>
<img src="Bul.png" alt="Texto de Imagen">
</main>
<footer>
<p> Es Mi Mundo, Mi vida, Mi mejor Regalo </p>
</footer>
</body>
</html>
CSS
body {
background-color:#547d8d;
color:#cfcadb;
}
a {
color: #0f0cdb;
font-size: 190%;
border: 5px solid #c46877;
padding: 10px;
font-weight: bodl;
}
h1 {
color:#ffe6e6;
text-align: center;
}
strong {
color: #1e1a31;
}
p {
color: #ffffff;
text-align: left;
font-size: 230%;
text-align: left;
}
img {
border: 25px solid;
border-radius: 5px;
padding: 5px;
}