HTML Form Tag
<form>Description:
defines a new HTML form Attributes:
| Attribute |
Value |
Description |
| name |
String |
Set the form name. |
| action |
String |
|
| method |
String |
|
| enctype |
String |
|
<select>Description:
defines a new combo box Attributes:
| Attribute |
Value |
Description |
| name |
String |
Set the combo box name. |
| onchange |
Javascript code |
|
<option>Description:
defines a new combo box item Attributes:
| Attribute |
Value |
Description |
| value |
String |
|
<input>Description:
defines a new text input or checkbox Attributes:
| Attribute |
Value |
Description |
| name |
String |
Set the input box name. |
| type |
text, button, checkbox, sublit, reset, hidden |
|
| value |
|
|
| size |
Integer |
Used to set the visible size fo text fields |
| checked |
|
|
| onclick |
Javascript code |
|
|