+ 2
How can we use the <select> tag in HTML5 ?
It'd be like this <select> "here what?" </select>
4 Respuestas
+ 7
<select>
<optgroup>
<option>
Text
</option>
</optgroup>
</select>
<optgroup>is optional
+ 2
The select tag is used inside the form tag to create a drop down list.
It is used like this,
<form >
<select name="abc" id="xyz">
<option value="any name">any name</option>
</select>
</form>
+ 1
<select>
<option value = "0">xyz</option>
</select>
0
Thanks everybody that was really useful