So I follow the online tutorial ( http://www.sitepoint.com/twitter-bootstrap-tutorial-handling-complex-designs/ ) and follow the code exactly, but for some reason my navigation bar does not appear like this should be . My friend (more experienced in web development) quickly looked at the code and couldn’t understand what was happening. So I decided to post my problem here.

I will also show you my working directory (in case you are wondering if all the files are in the same directory):

Here is the code in case you want to try it yourself
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My bootstrap</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
</head>
<body>
<div class="container">
<h1><a href="#">Bootstrap Site</a></h1>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Downloads</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="js/bootstrap.js"></script>
</body>
source
share