not able to create a proper select element.
i need its proper syntax please.
The select element has an opening and closing tag. The option elements go in between the opening and closing tags of the select element. The option element should also have a value
attribute.
The syntax of a select element:
<select>
<option value="...">...</option>
<option value="...">...</option>
</select>
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.