|
Drop Down Boxes I find drop down boxes are great for adding links to pages. You can link to other pages within your site, or even link to other people's pages. See my drop down box below. Here's the code to place in the <BODY> of your page, wherever you wish the drop down box to be seen... <SELECT name="guidelinks"> <OPTION SELECTED value="link1.htm"><B>First Page <OPTION value="link2.htm">Second Page </SELECT> </B> <INPUT type="button" name="go" value="Go!" onClick="window.location=document.guideform.guidelinks.options [document.guideform.guidelinks.selectedIndex].value"></FORM></CENTER> Very basic really. All you need to alter is the name of the page and the URL of the page. To add in any extra links, just use the <OPTION value="URL of link">NAME OF LINK tag. You can add as many as you wish. |