how to make a select option w3 school code example
Example: select option html
<label for="gender"> Select you gender</label>
<select name="gender">
<option value="none" selected>Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">other</option>
</select>