Want to learn how to create HTML Submission forms? Keep reading and you'll do just that!

The code you put first is:

Replace my email address with the one you want the form sent to, in the above code, but DON'T remove the "mailto" or anything else in the code.
Now, for each field on the form, put this code: <input TYPE="text" NAME="WordsOnBlinkie"> but make sure you replace my "WordsOnBlinkie" with whatever it is that the question is. For example, if the question is "What is your name?" you would put "name"
At the end, the code to put is: <center><p><input TYPE="submit" VALUE="Submit your form"></p>
You can replace the "submit your form" with anything you like.

Now, you may want more than just plain boxes, so here's some other things:

Radio Buttons:
Looks like: Yes.
Code: <input TYPE="radio" NAME="WillCredit">Yes.
You can replace "WillCredit" with anything you like to label the field, and put any text around it that you want.

Textareas:
Looks like:
Code:<textarea>IT'S A BOX! USUALLY FOR COMMENTS :)</textarea>
NOTE that you can change the height and the width of the textarea by adjusting the "rows" and "cols" in the code.

Check boxes:
Looks like:
Code: <input TYPE="checkbox" NAME="WillCredit">
Remember to change the "WillCredit to wahtever you like.

Restricting how much you can put on any field:
What is this? This limits how much a visitor/ person filling out the form can put in the box. For example, you want a shrot name and don't want to have your vivistors just putting "kjghdsgjdhgkjdshbtkjybeynlgkbndihws" endlessly, so you would limit the box size to 10 or 20.
Code: Simply insert this in the code: maxlength="18"
Be sure to change the size to whatever you want. Note that this only works for a normal text field.

Specifying field size:
What is this? This is telling your text box how big to be.
Code: Simply insert this in the code: size="15"
Be sure to change the size to whatever you want. Note that this only works for a normal text field.

Have the form redirect to a webpage once submitted, rather than to an email address:

Replace the "http://URL_WHERE_YOU_WANT_TO_GO" with whatever URL you want.



Have additional things you want to know? Email me at jadey213@yahoo.com to ask me any questions you may have.


Let's go HOME!