0
Need help with HTML forms type
When creating a form which type value should I put if I want the user to select one option from a list? For eg, when we have a list of birth years and we need to choose one of them.
4 odpowiedzi
+ 5
Use select and option tags
+ 5
use it please ↓↓↓
<select>
<option> 1 </option>
<option> 2 </option>
</select>
+ 2
Thank you all so much!