CSS: create a navigation bar using the CSS list tag
Here’s a quick way to create a navigation bar in CSS: use a list. The list-style: none removes the bullets. The display: inline tells the list items to be positioned horizontally across the page. I’ve used this solution when the navigation is simple.
#navlist li
{
list-style: none;
display: inline;
}
The top menu bar of this blog is created using this technique.

