Skip to content

Instantly share code, notes, and snippets.

@steinsag
steinsag / base.html
Last active December 11, 2015 03:59
Basic site structure incorporating responsive.gs requirements
<body>
<div id="page_wrap" class="container">
<header>...</header>
<section id="content_wrap">
<section id="article_listing">
<article>...</article>
<article>...</article>
</section>
@steinsag
steinsag / reset.html5.css
Created January 15, 2013 20:46
Reset for HTML5 elements
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
display: block;
}
@steinsag
steinsag / index.css
Last active December 11, 2015 02:58
A basic HTML5 page.
nav h1, footer h1 {
display: none;
}
@steinsag
steinsag / VIM: create UTF8 file
Last active December 11, 2015 02:48
Short sequence of vim commands to create an UTF8 file.
:set nobomb
:set fileencoding=utf-8
:w index.html