Problem with designing a drop down menu in HTML?

djm

New member
I am trying to design a drop down menu using HTML. I just started with only 2 options. When I preview it,click on one of the options and press go I get "This program cannot display the webpage" instead of going to the page I put the link to. Can anyone help? Below is the code.

<form name="Menu1">
<p><select name= "Link" size="1">
<option selected
value="home.htm">Browse by Genre</option>
<option value = "blues.htm">Blues</option>
<option value = "jazz.htm">Jazz</option></select><input type="button" value="Go"
onClick="window.location= document.Menu1.Link.options
(document.Menu1.Link.options.selectedindex).value;">
</p>
</form>
 
Back
Top