Skip to content

Instantly share code, notes, and snippets.

@NickCarneiro
Created July 13, 2013 19:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save NickCarneiro/5991987 to your computer and use it in GitHub Desktop.
Save NickCarneiro/5991987 to your computer and use it in GitHub Desktop.
HTML5 starter snippet with Bootstrap and jQuery.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge, chrome=1" />
<title>untitled</title>
<link rel="stylesheet" href="static/css/" />
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="span8 offset2">
<div class="box">
<h1>I could go for some breakfast tacos</h1>
</div>
</div>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="static/js/"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment