+ 1
How to create drop down box in html without using of hyperlink
Please I want correct answer
2 Respuestas
+ 5
Use the <select> tag with <option> tag for its options
+ 5
<select>
<option>ragul</option>
<option>kumar</option>
</select>
Please I want correct answer