Greetings! I am a newcomer to the world of bootstrap, so please bear with me if my question seems too basic. My current challenge involves creating a navbar using bootstrap. However, I have encountered an issue where the logo remains on the left side while the links align to the right. What I want is for the links to be beside the logo on the right side, with only "Sign In" and "Sign Up" aligning to the far right. Below is the code I have written: Here is what the desired layout looks like
<nav class="navbar bg-dark navbar-expand-md py-0">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="https://www.w3schools.com/bootstrap4/bird.jpg" alt="logo" style="width:40px;">
</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Subscriptions</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">FAQs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
<li class="nav-item ml-auto">
<a class="nav-link" href="#">Sign Up</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Sign In</a>
</li>
</ul>
</div>
</nav>