Ch10: Form Basics Flashcards
What will happen when a browser encounters a form control that it does not support?
The browser will display an input text box.
Which attribute of the form element is used to specify the name and location of the script that will process the form field values?
Action
Which of the following describes a variety of items, such as text boxes and buttons, that accept information from a web page visitor on a form?
form controls
Which of the following would configure a text box with the name “city” and a width of 35 characters?
An input element with the type, name, and size attributes
You would like to accept a number that is in a range from 1 to 50. The user needs visual verification of the number selected. Which of the following form controls is best to use for this purpose?
spinner
Which of the following form controls would be appropriate for an area that your visitors can use to type in their email address?
text box
You would like to conduct a survey and ask your web page visitors to vote for their favorite search engine. Which of the following form controls is best to use for this purpose?
radio button
Which of the following form controls would be appropriate for an area that your visitors can use to type in comments about your website?
scrolling text box
Which of the following would configure a scrolling text box with the name comments, four rows, and up to thirty characters in a row?
A textarea element with the name, rows, and cols attributes
Which of the following is an HTML element that serves to visually organize from controls on a web page?
fieldset