You would create an unordered list using the ul tags, and then have li tags. To make the list a horizontal navbar, you would do this in the CSS.
ul {
list-style-type: none;
display: inline;
}
The first line removes the bullets, and the second line will make it horizontal.