By using the select (menu control), option (an option within a menu) elements.
- Scrolling menus (more than one selection can be made when the multiple attribute is present):
<select name="varName" size="4" multiple> <!-- The size attribute indicates the size of the selection box in number of lines -->
<option value="EBTG">Everything but the girl</option>
<option>Aerosmith</option>
<option>The Cure</option>
<option>UB-40</option>
<option selected>Daft Punk</option>
<option value="GunsNRoses">Guns'n Roses</option>
</select>