Skip to content

Instantly share code, notes, and snippets.

@gabrielengel
Created August 24, 2011 03:58
Show Gist options
  • Save gabrielengel/1167276 to your computer and use it in GitHub Desktop.
Save gabrielengel/1167276 to your computer and use it in GitHub Desktop.
Testing Bootstrap from Twitter
<html>
<head>
<title>Need Wisdom?</title>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap-1.1.0.min.css">
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/docs.css">
<style>
.sidebar { background: #eee;}
.filler {background: #ff3; height: 20px; border: thin solid #999;}
</style>
</head>
<body>
<div class="topbar">
<div class="fill">
<div class="container">
<h3>
<a href="/">Wisdom</a>
</h3>
<ul>
<li>
<a href="#">First menu</a>
</li>
<li>
<a href="#">Profile</a>
</li>
</ul>
<ul class="nav secondary-nav">
<li class="menu open">
<a href="#" class="menu">Categories</a>
<ul class="menu-dropdown">
<li><a href="#">Animals</a></li>
<li><a href="#">Beds</a></li>
<li><a href="#">Cars</a></li>
</ul>
</li>
<li>
<a href="#">Login</a>
</li>
</ul>
</div>
</div>
</div>
<div id="masthead">
<div class="inner">
<div class="container">
<h1>Wisdom</h1>
<p class="lead">Did you come looking for it?</p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="sidebar">
<h1>Wisdom</h1>
<h2>Seek wisdom:</h2>
<h2>Share wisdom</h2>
</div>
<div class="content">
<div class="filler"></div>
<div class="row">
<div class="span3 columns filler"> Coluna</div>
<div class="span6 columns filler"> Coluna</div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment