drop down lists


Want one of these?



This is the code for one of those!



Replace MENU ITEM #1, MENU ITEM #2 and MENU ITEM #3 with whatever you want!

Wanna know how to add more items?

Well first off!

this code: <form name="list" method="POST"> <center><select name="list2" size="1" style="color:000; background-color:ffffff; font-family:trebuchet ms; font-size:11px; <br>border:thin solid 000";> <option>MENU ITEM #1</option> <option>MENU ITEM #2</option> <option>MENU ITEM #2</option> </select> </center></form>

Will give you this:

And this code: <form name="list" method="POST"> <center><select name="list2" size="1" style="color:000; background-color:ffffff; font-family:trebuchet ms; font-size:11px; <br>border:thin solid 000";> <option>MENU ITEM #1</option> <option>MENU ITEM #2</option> <option>MENU ITEM #3</option> <option>MENU ITEM #4</option> <option>MENU ITEM #5</option> <option>MENU ITEM #6</option> </select> </center></form> will give you this:


So if you want more items add more <option>MENU ITEM</option> to the list and replace the MENU ITEM with any word you want!