html select message

Solutions on MaxInterview for html select message by the best coders in the world

showing results for - "html select message"
Imen
17 Jun 2017
1<select name="color" id="color">
2	<option value="" selected disabled hidden>Choose color...</option>
3    <option value="R">Red</option>
4    <option value="B">Blue</option>
5</select>