Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 7: Facilitating User Interaction with HTML Forms!
Instruction
Drop-Down Lists
A drop-down list, also called a select menu, allows users to choose one option from a list of choices. Drop-down lists are compact and only display a single option at first; users can click the list to reveal all available options.
How to Create a Drop-Down List
To create a drop-down list in HTML, you use the <select>
element and nest <option>
elements within it for each choi...