I'm struggling to find a way to position my navbar exactly as I want it. I need the brand name, "Athletics", to stay on the left while the other options stay on the right. I've tried using classes like "navbar-left" and "navbar-right", playing around with the grid system, and tweaking some CSS, but nothing seems to be working. Here is a link to my code: https://jsfiddle.net/mcoulibaly23/9sn2kx58/ I will also include the code below:
<htnl>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<title>Navbar | Athletics </title>
</head>
<body>
<nav class= "navbar navbar-expand-lg fixed-top navbar-dark" style="background-color:darkmagenta; font-family:Roboto;">
<a class="navbar navbar-brand" href="#"> Athletics </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<ul class="navbar-nav">
<li class="active"><a class="nav-item nav-link" href="#"> Shop </a></li>
<li><a class="nav-item nav-link" href="#"> About Us </a></li>
<li><a class="nav-item nav-link" href="#"> Lookbook </a></li>
<li><form class="form-inline">
<input class="form-control mr-sm-2" type="search" placeholder="Search" height="10">
<button class="btn bth-outline-success" type="Submit"> Search </button>
</form></li>
</ul>
</div>
</nav>
</body>