Skip to content

Instantly share code, notes, and snippets.

@DavidPeralvarez
Created March 29, 2018 13:06
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 DavidPeralvarez/5ce1103b403a4a4355d806601d9e9de2 to your computer and use it in GitHub Desktop.
Save DavidPeralvarez/5ce1103b403a4a4355d806601d9e9de2 to your computer and use it in GitHub Desktop.
DIV y SPAN
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Las etiquetas DIV y SPAN</title>
</head>
<body>
<div id="cabecera">
<h1>Club selecto de las personas que más molan</h1>
<h2>Tu club de molar y cada día el de más gente</h2>
</div><!-- #cabecera -->
<div id="cuerpo">
<p>Para pertenecer a este club <span class="destacado">debes molar</span> más que el resto de tus amigos</p>
<p>Si crees que no molas lo suficiente, regresa a la <a href="main.html">página principal</a></p>
<img src="http://4.bp.blogspot.com/-B4MV9PXMXeY/TozTqMZp09I/AAAAAAAAPD0/-4ZAD4bWqmw/s1600/duquesa%2Balba.jpg" alt="ET de señora">
</div><!-- #cuerpo -->
<div id="footer">
<p class="azul">ET eligió vestirse de señora por su <span class="destacado">propia voluntad</span></p><!-- .azul -->
</div><!-- #footer -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment