From Htmlpedia
Contents |
[edit]
HTML Element FORM
[edit]
Definition and Usage
A fill-in form that will be processed by a HTTP server. Most forms will include either an <input> tag, a <select> tag or both.
[edit]
Examples
<form method="POST" action="formsubmit.php"> <p> <input type="text" name="exampletextbox" value="" /> <input type="submit" value="Submit" /> </p> </form>
[edit]
Attributes
[edit]
Optional attributes
None
[edit]
Standard Attributes
id, class, title, style, dir, lang
[edit]
Event Attributes
onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup, onsubmit
[edit]
