Creating Interactive Web Pages Using HTML Forms
Karen Tusack, Learning Support Services, Nov. 2000
karen@lss.wisc.edu
Let's build a form....
The entire form must be between the <FORM> and </FORM>codes,
so start by typing in
For a simple form whose data is emailed to you in a somewhat readable
format, use the following code directly after the <FORM> code.
It tells the browser what kind of information will be in the form, what
to do with the information in the form elements and whom to send it to.
(This is "hidden" code: nothing will appear on your web page.)
| <FORM METHOD="POST" ACTION="mailto:nobody@lss.wisc.edu?SUBJECT=Form
from my home page" ENCTYPE="text/plain"> |
Form elements - "Inputs"
Back
to Main Page