<form>
Browser |
|
---|---|
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
Radio button
Yes No Both
(Only one can be selected)
Check box
Cat Dog Bird
(The plural can be selected)
Hidden input field
(This item is not displayed)
This form cannot submit because of a sample.