Ok, if you mean the Drop down box, here is an example to get you started:
<form>
<p align="center"><b>Select a site </b>
<select id="Choice" style="color: #0000FF" size="1" name="mySelect">
<option value="">Select one</option>
<option value="
http://altavista.com">AltaVista</option>
<option value="
http://www.yahoo.com">Yahoo</option>
<option value="
http://www.google.com">Google</option>
</select>
<input type="button" value="Go"
onclick="window.open(Choice.options[Choice.selectedIndex].value)">
</p>
</form>
Copy and paste it into a new page and then preview in browser to see how it works.
Note that is uses a Go button. This is a must, or people who navigate with a keyboard
will
never get past the first item.
For pages in your web, the options would simply be the relative path to the page.
<option value="pagename.htm">Race Diary</option>
<option value="folder/pagename.htm">Race Entries</option>
and so on.
--
Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
Hi Steve
Thanks for getting back so quickly.
I would prefer a menu whereby there was a main section heading say: Race
Information, then a drop down selection of Race Diary, Race Entries, Race
Results, Race Reports etc. and when these drop down choices come up to be
able to click on them to go to that section of the Website. I hope I have
explained this OK. I have tried the Frontpage version of Insert Drop Down
Menu but cannot fill in the details it requires as it is all gobbly gook to
me!!! Hope you can help.
Cheers
Editor29