` Tindog
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="">Download</a>
</li>
</ul>
</div>`
This is my code the list items are not showing i dont know why please help me in that.
They should be showing in the right side in the front of tindog
The
collapseclass is by default not showing, If you inspect yournavbardivyou will fount out.collapse:not(.show)is active, So you should add theclassshowto your navbar div like In the example bellow:For better displaying of your
navbaryou can consult the official bootstrap website and see the navbar component page: https://getbootstrap.com/docs/4.6/components/navbar/