The HTML select box gives a lot of options where the user selects only on from many. it is defined as
<select>
<option>option 1</option>
<option>option 2</option>
<option>option 3</option>
</select>
Above is a select box having 3 options for the user to choose from. Apart from the select box HTML provides the radio button, which also gives the user the ability to select one from many.