asked 78.4k views
1 vote
In the web form you are creating, you want a multiple-option select list to appear with five options. which line of html code will help accomplish this

1 Answer

6 votes
You will use a <select> for this. For example:

<select name="choice">
<option>First</option>
<option>Second</option>
<option>Third</option>
<option>Fourth</option>
<option>Fifth</option>
</select>
answered
User Mozgras
by
7.5k points

No related questions found