This is my first time trying to build a website. I so far have my navbar set up but I want to make sure the right elements collapse into a dropdown button when I make the screen smaller. So far I have this and the button does not show up even though the cursor senses it needs to do something where the button should be.
<nav class="navbar-wrapper">
<div class="container-fluid">
<div class="navbar-header"> <!--I am looking to organize these elements on right hand side of page-->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Sash Illustration</a
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="index.html">Home</a></li>
<!--<div id="navBar">-->
<li><a href="about.html">About Me</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>