Skip to content

Instantly share code, notes, and snippets.

@twor3dg
Created May 21, 2020 22:04
Show Gist options
  • Save twor3dg/4e9ff39306c10508f9be3460d64b6826 to your computer and use it in GitHub Desktop.
Save twor3dg/4e9ff39306c10508f9be3460d64b6826 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="es">
<head>
<title>Título de la WEB</title>
<meta charset="UTF-8">
<meta name="title" content="Título de la WEB">
<meta name="description" content="Descripción de la WEB">
<link href="http://dominio.com/hoja-de-estilos.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<header>
<h1>Título de la WEB</h1>
</header>
<nav>
<a href="http://dominio.com/seccion2.html">IR SECCIÓN 2</a>
<a href="http://dominio.com/seccion2.html">IR SECCIÓN 3</a>
</nav>
<section>
<article>
<h2>CONTENIDO PRINCIPAL</h2>
<p>Este es el contenido principal de mi web</p>
<div>
<p>Aquí tenéis una imagen.</p>
<img src="http://dominio.com/imagen.jpg" alt="paisaje">
</div>
</article>
</section>
<aside>
<h3>Banner de publicidad</h3>
<a href="http://dominio-externo.com">
<img src="http://dominio.com/banner-publicidad.png" alt="banner de publicidad">
</a>
<h3>Testimonios</h3>
<p>Me gusta mucho esta página.</p>
</aside>
<footer>
<h4>Avisos legales</h4>
<a href="http://dominio.com/aviso-legal">Política de cookies</a>
<h4>Redes sociales</h4>
<a href="http://facebook.com/mi-pagina-de-facebook">Mi Facebook</a>
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment