HyperTextMarkupLanguage

HTML Advanced Functions

| Home | Agenda | Next |

INPUT - Input Fields

Appearance: <INPUT> </INPUT>
Attributes: TYPE=text|password|checkbox|radio|submit|reset|file|hidden|image, NAME=string, VALUE=string, CHECKED, SIZE=n, MAXLENGTH=n, SRC=URL, ALIGN=top|middle|bottom|left|right

<INPUT>
Common Attributes: [NAME,TYPE]

These INPUT tags define each input field. Each INPUT tag assigns a specified value to a variable which has a specified NAME and a specified data TYPE.

* File is not widely used and will not be covered

Basic structure of an INPUT tag:

        <INPUT TYPE=definition NAME=fieldname>

| Home | Agenda | Next |

T10D022