|
A mailto form starts with the same HTML that any HTML page begins with, including the <HTML>, <HEAD>, <TITLE> </TITLE> and <BODY> tags, and ends with the closing </BODY> and </HTML> tags.
In between the <BODY> and </BODY> tags, you'll want to include the type of action for your form, which will be:
<FORM ACTION="mailto:screenname@aol.com" METHOD="POST">
Where screenname@aol.com is replaced by your email address :-)
Then, you can start adding the radio buttons, checkboxes, or text input fields for your form. Like most HTML tags, you'll also need a closing HTML tag, the</FORM> tag.
Before you begin adding the text, radio buttons, checkboxes or text input field to your form, the basic HTML will look like this:
That's how you'll begin each form. The next tags we will cover include radio buttons, check boxes and text areas. Ready to move on?
|