Computer Science, asked by TbiaSamishta, 1 year ago

Write about select and option element.

Answers

Answered by Secondman
0

"Select element is used to create a drop down list. The option element is inside the select element that specifies the various options in the list. Both the select and the option element has an end tag,

For example, <select>

<option value = ""aaa"" > aaa </option>

<option value = ""bbb"" > bbb </option>

<option value = ""ccc"" > ccc </option>

</select>

When the user wants to create a drop down list he/ she can make use of the select and option element to create it."

Similar questions