Topic: Creating Menu in HTML

Hi I want to know that how to create the Menu in HTML.I am developing a website in HTML getting difficulties in menu design.Can any one suggest other software or tool to create an embed a menu.

Vote up Vote down

Re: Creating Menu in HTML

The menu is nothing but a list of links to other pages usually within the site.  Just use html to create it - for example:

<ul id="navigation">
<li><a href="#"Page 1</a></li>
<li><a href="#"Page 2</a></li>
<li><a href="#"Page 3</a></li>
<li><a href="#"Page 4</a></li>
<li><a href="#"Page 5</a></li>
</ul>

And use CSS to style it any which way you like.

Here are all kinds of examples:  http://css.maxdesign.com.au/listamatic/

Just because my computer is online does not mean that I am.
a&b WebDesign

Vote up Vote down