Need help using HTML

windows

Guest
i am an amature at using html. i am designing a web site and would like a drop down list where, when u select an option from the list, it opens the corresponding page.<!--content--><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Example</title><br />
<form action="link.pl"><br />
<div><br />
<select name="url"><br />
<option value="http://www.w3.org/TR/REC-html32">HTML 3.2</option><br />
<option value="http://www.w3.org/TR/html4/">HTML 4.01</option><br />
</select><br />
<input type="submit" value="Darling, you send me."><br />
</div><br />
</form><br />
<br />
And then get something like the following named 'link.pl' and up and running on the server:<br />
<br />
#!usr/local/bin/perl<br />
use CGI qw(redirect param);<br />
print redirect param 'url';<!--content-->Originally posted by Dave Clark <br />
[K]eeping in mind that JavaScript may not work ...<br />
It's not that it may not work, it will not work for at least one in ten users. That will make you seem an awfully bad web author and may run you afoul of certain disability laws.<!--content-->
 
Top