Skip to content

Instantly share code, notes, and snippets.

@anthroprose
Created November 6, 2013 03:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthroprose/7330503 to your computer and use it in GitHub Desktop.
Save anthroprose/7330503 to your computer and use it in GitHub Desktop.
Everything you need to get started with jQuery & Bootstrap
<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link href="http://getbootstrap.com/dist/css/bootstrap.css" rel="stylesheet">
</head>
<body>
<script>
// Write some JS here Yo
</script>
<div class="wrapper">
<div class="content-main">
<h1>Header</h1>
<div class="row">
<div class="col-md-6">
<input type="text" id="text_in" name="text_in" / >
</div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment