<form>

Browser
  • IE
  • Cr
  • Sf
  • Fx
  • O
Type

The form is used to send the data inputted by the user.


<form></form>

The form can contain multiple fields necessary for the input.

For example,

<form method="POST" action="cgi-bin/formmail.cgi">
Name : <input type="text" name="name">
E-Mail : <input type="text" name="email">
<input type="submit" value="Send">
</form>

Example

Text box

Password text box

Multi line text area

Radio button
Yes No Both
(Only one can be selected)

Check box
Cat Dog Bird
(The plural can be selected)

Selectable list

File selection box

Hidden input field
(This item is not displayed)

Button

This form cannot submit because of a sample.