Review Flashcards
What code will render a radio button?
(input type=”radio”)
T/F: You can have forms nested inside other forms.
False
What element should be nested inside of the (select) element?
(option)
What is generally the most commonly used and most versatile form element?
(input)
If you want the user to be able to choose more than one item from a predefined set of choices, what’s the best form control to use?
Checkboxes
What attribute can be used to group radio buttons together?
name
What two attributes are attached to the
<form>element?
</form>
action and method
What are the HTTP methods that can be used in the method attribute on a form?
get and post
What is the purpose of the (fieldset) element?
The (fieldset) element organizes form controls into logical groupings
What HTML form element allows for multiple lines of text to be entered by the user?
(textarea)