how do you make a dropdown bar using html?

Ryan

New member
im designing a website using front page and i need to make a dropdown bar like one that you hover over and it gives you more options
 
Is this what you're looking for?
It'll create a drop down box you can select the value from.
<select>
<option value="value1">Option 1</option>
<option value="value2">Option 2</option>
</select>
 
Back
Top