<div class="container"> <!--main div-->
<div>
<nav class="navbar navbar-light bg-light">
<a href="https://wwww.kidsedge.in" class="navbar-brand"><img id="logo" src="logo_white_background.jpg"></img></a>
<ul class="navbar-nav list-unstyled justify-content-end">
<li class="nav-item ml-2">
<button><a href="#" class="nav-link">Login</a></button><!--Login Link-->
</li>
<li class="nav-item ml-2">
<button><a href="#" class="nav-link">Explore Live Experiments</a></button><!--Current Available Live Courses Link--></li>
</ul>
</nav>
</div>
</div>
</body>
This code functions properly to display the desired navbar. However, I am struggling with aligning the login and explore experiments button to the right. Despite attempting to use mr-auto and mr-right in the ul, as well as custom CSS for alignment, I have not achieved the desired result. How can I make the two buttons go to the right of the nav bar?