HTML for Drop Down menu?

  • Thread starter Thread starter The Million $ Man
  • Start date Start date
T

The Million $ Man

Guest
I need the HTML code for a drop down bar. Like Ebay ( Catergories - They have a drp down bar where people can select the catergory of the item) I need the code for exactly that. So that when they click on the drop down bar all the catergories will show and when they click the link it will redirect them to the page.

Thanks
 
Below is the html code for a drop down list but the most important part of it to make it a drop down list is size. IF you set the value of this to 1 then it will appear as a dropdown list.
<form action="Wheretosend" method="post">
<select name="fieldname" size="1">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
</select>
<input type="submit" value="Submit">
</form>
 
Back
Top