Skip to content

Instantly share code, notes, and snippets.

@khamer
Created January 24, 2013 21:02
Show Gist options
  • Select an option

  • Save khamer/4627711 to your computer and use it in GitHub Desktop.

Select an option

Save khamer/4627711 to your computer and use it in GitHub Desktop.
<!-- do you like this -->
<body>
<div id="foobar">
<header></header>
<div class="torso">
...
</div>
<footer></footer>
</div>
</body>
<!-- or this -->
<body>
<header>
<div class="foobar">
...
</div>
</header>
<div class="torso">
<div class="foobar">
...
</div>
</div>
<footer>
<div class="foobar">
...
</div>
</footer>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment