Why might the text area element be used instead of an input element of type text?
What is the purpose of the fieldset element?
What code sample will create a text input?
(input type=”text” name=”username”)
Why might you want to use a select element instead of a group of radio buttons, even though they serve the same function?
What is the purpose of the legend element?
What element allows for the creation of groups of options in a select menu?
(optgroup)
What code sample is a properly labeled input element?
(label for=”username”)Username:(/label)(br)
input type=”text” name=”username” id=”username”
What code sample will create a submit button?
(input type=”submit” name=”Submit”)