align="left|right|top|middle|bottom"
This parameter uses the same values as does the <IMG>
command, however, precise alignment of form elements is best accomplished using tables.
checked
This parameter requires no value. It indicates that if the form element is a radio button
or a check box it is preselected as the default in a defined list of options.
maxlength="# of characters"
Defines the maximum response length, in characters, that is allowed for input in a text box.
name="input element name"
Provides the defined input element with a name. The name should be unique within
the form.
size="# of characters"
Defines the display width of a text input element in characters. Input is
allowed beyond the size of the input box, but cannot exceed any set maxlength.
Long input simply scrolls the content of the box toward the left so that the user
can see what is being keyed.
src="URL"
Defines the URL of an image to place in a form only where type
is image.
type="input type"
Where input type can be any from the list of predefined types below:
- checkbox -
declares the input type to be a checkbox
- hidden -
declares the input type to be hidden from the user's view
useful for using the form to send identifying information back to the server
- image -
places an image in the form for use as an alternative to the standard submit button
- password -
declares a text type box, but the input is not displayed
as it is keyed
- radio -
declares the input type to be a radio button
|
- reset -
defines a form reset or clear button
- submit -
defines a form submit button
- text -
declares the input type to be simple text
- textarea -
declares the input type to be a text block
area capable of receiving a large block of input text.
Use the more advanced <TEXTAREA> command
instead.
|
value="default value"
Establishes a default value in any defined input element. Radio buttons
require values to permit selection.