DOCUMENT HIERARCHY



This is the first form named "f1"


This is an input element of TYPE "text"

This is an input element of TYPE "password"

Here is an input element of TYPE "hidden"
The browser does not show it but javascript can access it!

This is an input element of TEXTAREA, text wrap not allowed.

This is an input element of TEXTAREA, text wrap allowed.



This is the second form named "f2"

This is an input element of TYPE "checkbox"

This is an input element of TYPE "button"

This is a set of input elements of TYPE "radio."
They form a mutually exclusive set.

This is another set of input elements of TYPE "radio."


This is an element of TYPE "image".



This is the third form named "f3"

This is a set of SELECT elements.
Multiple selections are not allowed.

This is another set of SELECT elements.
Multiple selections are allowed.

This is an element of TYPE "reset".
This one resets the default values of form f3.

This is an element of TYPE "SUBMIT".
It tells the browser to send the contents of ALL the elements in this form to the address specified in the form. This can be a server address or an email address.