3
I have declared bootstrap libs in the code so:
My error is on the page, that when you click on the menu icon, it does not expand Behold:
Any suggestions?
<!DOCTYPE html>
<html>
<head>
<title>Pousada Deutsches Haus</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="resources/css/estilo.css">
<link rel="stylesheet" type="text/css" href="resources/bootstrap/css/bootstrap.css">
<script type="text/javascript" scr="resources/js/jquery-3.1.0.min.js"> </script>
<script type="text/javascript" scr="resources/bootstrap/js/bootstrap.js"></script>
<body>
<div class="container">
<div class="col-xs-8">
<img src="resources/imagens/logo_deut.png">
</div>
<nav class="navbar navbar-inverse navbar-fixed-top col-xs-4">
<div class="navbar-header">
<a class="navbar-brand" href="#">Brand</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="navbar-inverse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="navbar-header navbar-right">
<p class="navbar-text">
<a href="#" class="navbar-link">Username</a>
</p>
</div>
</div>
</nav>
</div>
</body>
</html>
Exchange navbar-Collapse for navbar-inverse in data-target
– denis
Didn’t solve tbm, some other suggestion?
– Alisson Hoepers
Instead of putting an image with HTML you could edit and put your HTML in text here so that we can quickly edit and discover the problem?
– Giancarlo Abel Giulian
Nothing yet, it seems to be between the bootstrap js and jquery declaration
– Alisson Hoepers
Follow code code in text there in question
– Alisson Hoepers
trade "scr" for
src
– Guilherme SpinXO