| text |
<input type="text" ...> | size=n (width) |
| button |
<input type="button" ...> |
kind of useless in cgi; needs javascript! |
| submit |
<input type="submit"> |
special button to submit your form data |
| radio |
<input type="radio" ...> |
group them by giving them the same name |
| checkbox |
<input type="checkbox" ..." |
checked |
| menu |
<select> <option value=...> ... </select> |
size=n (height), multiple |
| text area |
<textarea> ... </textarea> |
rows=n, cols=n |