im starting study bootstrap and im doing a basic example with a nav bar. I went to bootstrap documentation for navbar here -> "http://getbootstrap.com/2.3.2/components.html#navbar" and i copy the code to my project, but the menu appears all unformatted. What could be wrong?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Untitled Document</title>
<link rel="stylesheet" href="css/template.css" />
<link rel="stylesheet" href="css/bootstrap-theme.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap.css" />
</head>
<body>
<div class="container">
<div class="row" id="topo">
<div class="span5">
<a href="index.html" title="Index">
<img src="logo.png" alt="Logo"/>
</a>
</div>
</div><!--end top-->
<div class="row" id="navegation">
<div class="span12">
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#">Title</a>
<ul class="nav">
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
</div>
</div>
</div><!--end navegation-->
</div><!--end container-->
<script src="js/bootstrap.min.js"></script>
</body>
</html>
what im getting is:
