nucklearknight
New Member
I want to have a drop down menu for my website that has a "GO" button next to it so the user can select the link they want and hit the "GO" button and it will take them to that url. Is there a way to do it with HTML only? Or do I need Java? Here's what I have so far:
Code:
<html>
<head>
<title>Form</title>
</head>
<h1><center>My Links</center></h1>
<body>
<form>
<select>
<option>Home</option>
<option>About Me</option>
<option>Programs</option>
</select>
<input type="submit"
value="GO">
</form>
</html>