HTML
<!DOCTYPE html>
<html lang="es-CL">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Haga lo que hicimos en el aula</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Mejorando la estilización de tú CSS</h1>
<p> Haga lo que hicimos en aula</p>
</body>
</html>
body{
background-color:#2151CC;
text-align: center;
}
h1{
color:#5FCF27;
}
p{
color:#EC451B;
}
body{
background-color: #000000;
text-align: center;
}
h1{
color: #FAEEDC;
}
p{
color:#FFFFFF;
}
body{
background-color: #FF5733;
text-align: center;
}
h1{
color: #00FF00;
}
p{
color:#00FF00;
}