Skip to content

Instantly share code, notes, and snippets.

@maagmirror
Created March 18, 2024 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maagmirror/bf110981bc2dc2c13c35afd1ac66c2d6 to your computer and use it in GitHub Desktop.
Save maagmirror/bf110981bc2dc2c13c35afd1ac66c2d6 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conociendo a Emi</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 40px;
background-color: #f0f8ff;
}
header {
background-color: #ffb6c1;
padding: 20px;
text-align: center;
font-size: 24px;
color: white;
}
section, footer {
margin-top: 20px;
}
article, footer {
background-color: white;
margin: 20px 0;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
p, footer p {
line-height: 1.6;
}
footer a {
display: inline-block;
margin-right: 15px;
color: #1a0dab;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
Conociendo a Emi
</header>
<section>
<article>
<h2>¿Quién es Emi?</h2>
<p>Emi es una persona increíblemente amable y siempre está dispuesta a ayudar a los demás. Con una sonrisa que ilumina la habitación, Emi tiene el don de hacer que todos se sientan bienvenidos y apreciados.</p>
</article>
<article>
<h2>Curiosidad sin límites</h2>
<p>Además de su amabilidad, Emi es conocido por su inquietud y curiosidad. Siempre está buscando aprender algo nuevo, explorar lugares desconocidos y probar experiencias diferentes. Esta pasión por el descubrimiento hace que cada día con Emi sea una aventura.</p>
</article>
</section>
<footer>
<p>Sigue a Emi en las redes sociales:</p>
<a href="https://facebook.com" target="_blank">Facebook</a>
<a href="https://twitter.com" target="_blank">Twitter</a>
<a href="https://instagram.com" target="_blank">Instagram</a>
<a href="https://linkedin.com" target="_blank">LinkedIn</a>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment