Bootstrap Skeleton

This is a simple Bootstrap skeleton. You can fork it to get a ready to use Bootstrap fiddle.

by BinaryAcid

HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.0.1/bootstrap.min.js"></script>
<script src="http://jslib.dotcloud.com/fiddle-require.js"></script>
<div class="navbar navbar-fixed-top">
  <div class="navbar-inner">
    <div class="container">

        <a class="brand" href="#">
  Project name
</a>
        
        <ul class="nav">
  <li class="active">
    <a href="#">Home</a>
  </li>
  <li><a href="#">Link</a></li>
  <li><a href="#">Link</a></li>
</ul>
        
        
    </div>
  </div>
</div>


<div class="container poo">
    
    <div class="hero-unit">
        <h1>Bootstrap jsFiddle Skeleton</h1>
        <p>Fork this fiddle to test your Bootstrap stuff.</p>
        <p>
            <a class="btn btn-primary btn-large" href="http://twitter.github.com/bootstrap/index.html" target="_blank">
                Learn more about Bootstrap
            </a>
        </p>
    </div>
    
</diV>

CSS

@import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');


.poo {
    margin-top: 46px; 
    background-color: yellow;    
}