FORMS
NEW TAGS:
Forms are usually processed by posting your data to a server side script, like this:
<FORM METHOD="post/get" ACTION="url.html">
You can also have the data mailed to you, like this:
<FORM METHOD="post" ACTION="mailto:name@site.com" ENCTYPE="text/plain">
All your input fields go between the opening and closing form </FORM> tag.