Skip to content

Instantly share code, notes, and snippets.

@Netcelal
Forked from dennisschipper/index.html
Created May 26, 2012 15:10
Show Gist options
  • Save Netcelal/2794269 to your computer and use it in GitHub Desktop.
Save Netcelal/2794269 to your computer and use it in GitHub Desktop.

Revisions

  1. @dennisschipper dennisschipper created this gist Dec 17, 2011.
    33 changes: 33 additions & 0 deletions index.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,33 @@
    <!doctype html>
    <head>
    <meta charset="utf-8">
    <title></title>
    <link rel="stylesheet" href="styles.css">
    <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    </head>
    <body>

    <div id="wrapper">

    <header>

    </header>


    <div id="content">

    <section>

    </section>

    </div>


    <footer>

    </footer>

    </div>

    </body>
    </html>
    38 changes: 38 additions & 0 deletions styles.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,38 @@
    html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; }
    article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }

    BODY {
    background: #fff;
    font-family: helvetica, verdana, sans-serif;
    font-size: 1em;
    color: #202020;
    line-height: 1.6em;
    padding: 0px;
    margin: 0px;
    }

    H1, H2, H3, H4, H5 {
    font-weight: normal;
    }

    .centered {
    text-align: center;
    }

    .clear {
    clear: both;
    }

    .left {
    float: left;
    }

    .right {
    float: right;
    }

    hr {
    border: 0px;
    height: 0px;
    border-bottom: 1px solid #cecece;
    }