The <option> tag is a child tag of <select> tag. The <option> tag represents the list items of the drop-down list. The <option> tag has value attribute which hold the value of the particular drop-down list item.
Example of Code
<select name="City">
<option value="bangkok">Bangkok</option>
<option value="chiang-mai">Chiang Mai</option>
<option value="pattaya">Pattaya</option>
</select>
Output
