I downloaded a bootstrap theme menu from bootswatch.com. this is the link http://bootswatch.com/lumen/
And then I copied and pasted the Header Menu code from bootswatch and tried to run it in my localhost. The bootstrap seems to be not working. When the screen is not maximized, there is a box-like button, with three horizontal lines in the upper far-right side. When I click it, it is not working, but in the bootswatch website, it is working.. what seems to be the problem?
this is the jsfiddle of it.. http://jsfiddle.net/tSUUL/2/
<html>
<head>
<link type="text/css" href="bootstrap/bootstrap.css" rel="stylesheet">
<link type="text/css" href="bootstrap/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-inverse">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-inverse-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<img border="0" src="images/logo.png" alt="My Treats by Angie Lee" width="200" height="150"/>
<a class="navbar-brand" href="#">My Treats by Angie Lee</a>
</div>
<div class="navbar-collapse collapse navbar-inverse-collapse">
</br>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Cart</a></li>
<li><a href="#">Policies</a></li>
</ul>
<form class="navbar-form navbar-right">
<input type="text" class="form-control col-lg-8" placeholder="Search">
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Register</a></li>
<li><a href="#">Login</a></li>
</ul>
</div>
</div>
</body>
</html>