Use a <select>
with given <options>
:
The
select
element represents a control for selecting among a list of options. (1)
Example
<select>
<option>My first option</option>
<option>My second option</option>
<option>My third option</option>
</select>
See also:
solved Options inside an input element [closed]