NeedHost Expert Talker


Joined: 30 Jul 2007 Posts: 156
Gender: None specified
|
Posted: Sat Aug 11, 2007 4:05 am Post subject: "drop down menu html code"
View Single Post |
|
|
drop down menu html code
| Code: |
<form name="Your-Form-Name-Here">
<select style="font-size:12px;color:#006699;font-family:verdana;background-color:#ffffff;" name="menu">
<option value="http://your-link-1-here.com">Text link 1 here</option>
<option value="http://your-link-2-here.com/link.html">Text link 2 here</option>
<option value="http://your-link-3-here.com">Text link 3 here</option>
<option value="http://your-link-4-here.com">Text link 4 here</option>
</select>
<input style="font-size:12px;color:#ffffff;font-family:verdana;background-color:#006699;" type="button" onClick="location=document.Your-Form-Name-Here.menu.options[document.Your-Form-Name-Here.menu.selectedIndex].value;" value="Text on button">
</form> |
Or try this drop down menu generator: http://www.htmlbasix.com/dropmenu.shtml
|
|