At this point a background color and text color can be applied. There are many color combinations that can be used.
CSS CODE
ul#navlist
{
padding: 0;
margin: 0;
list-style-type: none;
}
ul#navlist li { display: inline; }
ul#navlist li a
{
float: left;
width: 5em;
color: #fff;
background-color: #036;
}
HTML CODE
<ul id="navlist">
<li><a href="#">Item one</a></li>
<li><a href="#">Item two</a></li>
<li><a href="#">Item three</a></li>
</ul>