One of the most frequently asked questions is how to create a navigation menu in Expression Web. Be it horizontal or vertical.
So here is the help you've been looking for. I also suggest viewing the recent video tutorial updates. One set of the videos shows you how to style a horizontal navigation using a list. The other video teaches you how to make a vertical menu.

We must first create an unordered list, then we need to style the list with CSS. An unordered list will create a bulleted list by default. So we use CSS to remove the bullets and style the hyperlinks, as well as make nav buttons (optional).
Place
your cursor in the #top-nav div and type in "Home" as your first
navigation link to be.
The HTML tags that will create a
bulleted list: <ul></ul>
Each item in the list, called List Item, is wrapped in the following
HTML tags: <li></li>
<ul> and <li> provide the 'hooks' for our CSS Styles. We only
need 2 CSS styles to modify the entire list and make it horizontal.
There is no need to style each individual item in your menu.
Now place your cursor at the end of the word "home" and press enter. Type in the next word that will be a link in your navigation.
It's tough to insert all your items at this point. Just enter 2 and then style the ul and li.
Then you can more easily add more links. Each item/link will receive the existing styles automatically.
#top-nav ul {
list-style-type:
none;
margin: 0;
}
#top-nav li {
float: left;
overflow:hidden;
line-height: 30px;
width: 110px;
line-height: 30px;
margin:0;
padding:0;
font-family: Myriad Pro, Verdana;
color: #ffffff;
background-color: #222;
text-align: center
border:
ridge 2px #000;
}
Next, Create the Hyperlinks and Style the Hyperlinks with CSS. Create a hover effect for all hyperlinks using only CSS. Watch the Video.