Hi Guys!
In this tutorial, I will make a HTML drop down menu. This is the code:
To change the text and links, just edit the following code:
Click here for a demo
Thanks,
McStormify
In this tutorial, I will make a HTML drop down menu. This is the code:
Code:
<form name="jump">
<p align="center">
<select name="menu">
<option value="http://xcodes.webhostingfox.com/forum/index.php">XCodes</option>
<option value="http://forumotion.com">Forumotion</option>
<option value="http://google.com">Google</option>
<option value="http://ask.com">Ask.com</option>
<option value="http://microsoft.com">Microsoft</option>
</select>
<input type="button" onClick="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
</p>
</form>
To change the text and links, just edit the following code:
Code:
<option value="http://xcodes.webhostingfox.com/forum/index.php">XCodes</option>
Click here for a demo
Thanks,
McStormify