Forms

Forms are like tables, every from must start with this code
<FORM method="post" action="URL">

Email Forms

If you would like the form to email to you use this code to start your form.
<FORM method="post" action="mailto:your@email.com">

Adding Form Elements

After you've started your form you can add any of the following of these.

Input Fields

<INPUT TYPE="text" NAME="name" SIZE="30">


Password Fields

<INPUT TYPE="password" NAME="password" SIZE="30">


Textareas

<TEXTAREA NAME="comment" ROWS=6 COLS=40> </TEXTAREA>


Radio Buttons

<INPUT TYPE="radio" NAME="heading of button" VALUE="button name">


Check Boxes

<INPUT TYPE="checkbox" NAME="Signing_from" VALUE="Joes_page">


Select Boxes/Drop Down Menus

<SELECT NAME="Favorite_Color" SIZE="1"> <OPTION SELECTED>Blue <OPTION>Red <OPTION>Yellow <OPTION>Green <OPTION>Black <OPTION>Orange <OPTION>Purple </SELECT>


Submit Button

<INPUT TYPE="submit" NAME="submit" VALUE="Submit!">


Finishing Your Form

When your all done add this code at the bottom of your form.
</FORM>

.