[Top] -- HTML Documentation Table of Contents

Forms
(These generally require a script on your server)

No notation:
3.0:
HTML 2.0
HTML 3.0 tag
N1.0:
N1.1:
N2.0:
Netscape extension with Navigator 1.0
Netscape extension with Navigator 1.1
Netscape extension with Navigator 2.0


Define Form
<form action="url"method=get></form>
<form action="url" method=post></form>
N2.0File Upload
<form enctype="multipart/form-data></form>
Input Field
<input type="text">
<input type="password">
<input type="checkbox">
<input type="radio">
<input type="image">
<input type="hidden">
<input type="submit">
<input type="reset">
Field Name
<input name="***">
Field Value
<input value="***">
Checked? (checkboxes and radio boxes)
<input checked>
Field Size (in characters)
<input size=?>
Max Length (in characters)
<input maxlength=?>
Selection List
<select></select>
Name of List
<select name="***"></select>
Number of Options
<select size=?></select>
Multiple Choice (can select more than one)
<select multiple>
Option (items that can be selected)
<option>
Default Option
<option selected>
Input Box Size
<textarea rows=? cols=?></textarea>
Name of Box
<text area name="***"></textarea>
N2.0Wrap Text
<text area wrap=off></textarea>
<text area wrap=virtual></textarea>
<text area wrap=physical></textarea>
[Top] -- HTML Documentation Table of Contents