It seems like there's a simple solution I'm overlooking. When I resize my screen, the navbar collapse toggle stops working. I've searched various forums but couldn't find a fix that works for me.
Could someone lend a hand in identifying what's missing from the code snippet below?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title></title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/slate-bootstrap.min.css" />
<link rel="stylesheet" href="css/larry.css" />
</head>
<body>
<div id="page">
<header class="container">
<div id="menu" class="navbar navbar-default">
<div class="navbar-header">
<button class="btn btn-success navbar-toggle"
data-toggle="collapse"
data-target=".navbar-collapse"><span class="glyphicon glyphicon-chevron-down"></span>
</button>
<div id="logo">
<h4><a href='./index.html'><img src="images/LE-logo.png"></a></h4>
</div>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="nav active"><a href="./index.html">Home</a></li>
<li class="nav"><a href="./resume.html">Resume</a></li>
<li class="nav"><a href="./contact.html">Contact</a></li>
<li class="nav"><a href="./about.html">About</a></li>
</ul>
</div>
</div>
</header>
<section id="body" class="container">
<section id="main" class="col-md-9">
<p> Ipsum lorem, blah , blah</p>
</section>
</section>
<hr />
<footer class="container">
<p>Placeholder for footer</p>
</footer>
</div>
<script scr="js/jquery-2.0.3.min.js"></script>
<script scr="js/bootstrap.min.js"></script>
</body>
</html>