how to set placeholder for select code example
Example 1: placeholder in html select
<option value="" selected disabled hidden>Select Here</option>
Example 2: How do I make a placeholder for a 'select' box?
<select>
<option value="" disabled selected>Select your option</option>
<option value="hurr">Durr</option>
</select>