Skip to content

Instantly share code, notes, and snippets.

@pdparker
Created May 8, 2014 11:50
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 pdparker/6287b01babe518cbbc23 to your computer and use it in GitHub Desktop.
Save pdparker/6287b01babe518cbbc23 to your computer and use it in GitHub Desktop.
Bootstrap Starter: HTML
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 101 Template</title>
<!-- The following tag allows for website to be viewed on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/css/bootstrap-responsive.css" rel="stylesheet">
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="../../assets/js/html5shiv.js"></script>
<script src="../../assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar">
<a class="navbar-brand" href="#">Philip Parker</a>
<ul class="nav navbar-nav">
<li class="active"><a href="#">CV</a></li>
<li><a href="#">Publiciations</a></li>
<li><a href="#">Contact Me</a></li>
</ul>
</div>
<div class="row">
<div class="span9">
Level 1 of column
</div>
<div class="row">
<div class="span6">Level 2</div>
<div class="span3">Level 2</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment