Make .navbar a flex container with its items spread apart using justify-content: space-between.
Acceptance criteria
- 1.Set .navbar to display: flex.
- 2.Set justify-content: space-between.
Make .navbar a flex container with its items spread apart using justify-content: space-between.
<nav class="navbar"> <span class="logo">Brand</span> <a href="/pricing">Pricing</a> <a href="/login">Login</a> </nav>
Output ready when you are
Press Run to render your code, or Submit to validate your solution.