Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 1, 2021 14:30
Show Gist options
  • Save parzibyte/59b9d747af2002c89e455de6ce822a31 to your computer and use it in GitHub Desktop.
Save parzibyte/59b9d747af2002c89e455de6ce822a31 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plantilla By Parzibyte</title>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<header>
<h1>Aquí va el encabezado</h1>
</header>
<div class="contenedor">
<section>
<figure>
<img src="https://picsum.photos/500" alt="Imagen">
<figcaption>Descripción de la imagen</figcaption>
</figure>
<h2>Aquí un título</h2>
<p>Aquí puede ir un poco de texto</p>
</section>
<aside>
<p>Esta es la barra de la derecha</p>
</aside>
</div>
<footer>
<p>Este es el pie de página</p>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment