How do I create a dropdown list where somehow I link to the pages for each option by using href tags? I want search engines to recognize the various pages linked to in the options and to crawl them. Thanks
if your after a form dropdown you can use this method: <select> <option value ="link1"><a herf="link1.html">link1</a></option> <option value ="link2"><a herf="link2.html">link2</a></option> <option value ="link3" selected="selected"><a herf="link3.html">link3</a></option> </select> Code (markup): Or else you could create it in an unordered list and style it in css like bacanze mentioned, there would be many tutorials out there to help
you can find full source code following this link : jasp-costin.blogspot.com/2007/04/dropdown-navigation-menu.html HTH