which command is present in the select drop down arrow of the image group?
Answers
Answer:
Drop-down menus in HTML
A drop-down menu is a clean method of showing a large list of choices since only one choice is displayed initially until the user activates the drop-down box. To add a drop-down menu to a web page, you would use a <select> element. The <option> element with attribute selected="selected" is the default option, displayed before the menu is opened.
Select a Choice: <select name="example"> <option selected="selected" value="one">Choice 1</option> <option value="two">Choice 2</option> <option value="three">Choice 3</option> </select>
In this example, we have also assigned a value to each of these options. These values can be passed to any server-side script for information to be logged or for actions to occur based on the values.