I'm struggling with an issue - I can't seem to apply a background color to my top bar. I've tried multiple times but it's still not working. Could you please help me fix this error?
https://i.sstatic.net/mzJIo.png
Below is the code for my simple top bar:
topbar.html
<div class="header-top bg-dark" style="background-color: black;">
<div class="container-fluid bg-dark" style="background-color: black;">
<div class="left-side float-left ml-5">
<p>Search</p>
<p style="text-indent: 20px;">About Us</p>
<p style="text-indent: 20px;">Contact Us</p>
</div>
<div class="right-side float-right mr-5">
<p>Login</p>
<p style="text-indent: 20px;">Register</p>
</div>
</div>
</div>