Skip to content

Instantly share code, notes, and snippets.

@rgaspary
Last active December 19, 2015 01:39

Revisions

  1. rgaspary revised this gist Jul 4, 2013. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion html5-starter.html
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <head>
    <meta charset="utf-8" />
    <meta name="robots" content="index, follow" />
    <meta name="description" content="" />
  2. rgaspary revised this gist Jul 4, 2013. 1 changed file with 18 additions and 16 deletions.
    34 changes: 18 additions & 16 deletions html5-starter.html
    Original file line number Diff line number Diff line change
    @@ -16,24 +16,26 @@
    <!--[if lt IE 7]>
    <link rel="stylesheet" href="ie6.css" type="text/css" media="all" />
    <![endif]-->
    <!-- JS -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <!-- http://code.google.com/p/ie7-js/ -->
    <!--[if lt IE 8]>
    <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta3)/IE8.js"></script>
    <![endif]-->
    <!-- IE HTML 5 -->
    <!--[if IE]>
    <script>
    document.createElement("header");
    document.createElement("footer");
    document.createElement("nav");
    document.createElement("article");
    document.createElement("section");
    </script>
    <![endif]-->
    <!-- Include Favicon -->
    <link rel="icon" type="image/png" href="myicon.png">
    </head>
    <body id="index" class="home">

    </body>
    <!-- JS -->
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
    <!-- http://code.google.com/p/ie7-js/ -->
    <!--[if lt IE 8]>
    <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta3)/IE8.js"></script>
    <![endif]-->
    <!-- IE HTML 5 -->
    <!--[if IE]>
    <script>
    document.createElement("header");
    document.createElement("footer");
    document.createElement("nav");
    document.createElement("article");
    document.createElement("section");
    </script>
    <![endif]-->
    </html>
  3. rgaspary created this gist Jun 27, 2013.
    39 changes: 39 additions & 0 deletions html5-starter.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,39 @@
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8" />
    <meta name="robots" content="index, follow" />
    <meta name="description" content="" />
    <meta name="keywords" content="" />
    <meta name="author" content="" />
    <title></title>
    <!-- iPhone Icon -->
    <link rel="apple-touch-icon" href="images/iphone-icon.png" />
    <!-- CSS -->
    <link rel="stylesheet" href="reset.css" type="text/css" media="screen,projection" />
    <link rel="stylesheet" href="layout.css" type="text/css" media="screen,projection" />
    <link rel="stylesheet" href="type.css" type="text/css" media="screen,projection" />
    <!--[if lt IE 7]>
    <link rel="stylesheet" href="ie6.css" type="text/css" media="all" />
    <![endif]-->
    <!-- JS -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    <!-- http://code.google.com/p/ie7-js/ -->
    <!--[if lt IE 8]>
    <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta3)/IE8.js"></script>
    <![endif]-->
    <!-- IE HTML 5 -->
    <!--[if IE]>
    <script>
    document.createElement("header");
    document.createElement("footer");
    document.createElement("nav");
    document.createElement("article");
    document.createElement("section");
    </script>
    <![endif]-->
    </head>
    <body id="index" class="home">

    </body>
    </html>