+ 1
How to add navbar background color? give me code help me?
help me
3 Answers
+ 5
Two ways inline
<nav style="background-color:#f00;"> </nav>
Or css as
nav { background-color:#0f0; }
+ 3
As BroFarOps©Ÿïžâąïžthe đ± mentioned, you can style your navbar with either a style attribute or by using an external CSS stylesheet. Also, within the <style> ... </style> tags.
0
nav
{
background-color:red;
}