| Attribute |
Description |
| ID |
Identifies this tag to reference in script (program code) |
| CLASS |
Define the class used to render this element (defined by a style sheet) |
| TITLE |
A title that is associated with the element (displayed as a tooltip in Internet Explorer) |
| NAME |
Assigns a name to the form so you can refer to the elements of the form using client-side scripting (eg. Javascript) |
| ACTION |
The URI (normally a web page on the same server) where information from the form will be sent once the form is submitted |
| METHOD |
Indicates how information should be submitted to the resource defined by the ACTION tag. May be one of: get, post |
| ENCTYPE |
Indicates the type of data encoding to use when submitting the form. This defaults to application/x-www-form-urlencoded and you won't need to specify this in most cases. If you have a INPUT TYPE=file control on your form, then you will need to specify an encoding type of multipart/form-data. |
| ACCEPT-CHARSET |
Inidicate acceptable content types which may be submitted using a INPUT TYPE=file input. These are often referred to as MIME types and look something like text/plain or image/jpeg |