back to step 10
Step 11 - Put a Form On your Site!
Heres how to put a form on your site that allows your visitors to send you an email, like this one,
Name:

E-mail:

Website:

Message:



First of all copy and paste this into your page

And change the things in capitals.
Now for the actual form, If you want a normal input feild like this copy and paste the code below it;
<input type="text" name="" size="30" value=""><br> In the name bit put a name like email if its for there email address this will come up in the email you recieve put you can't see it when filling in the form.
In the value bit put what you want to see in the box when you're filling in the form put if you want it empty like mine just leave it blank.

If you want a textarea like this use the code below;
<textarea name=" " rows="2" cols="30"></textarea> Fill it in like the one above execpt instead of using value you just type what you want to appear between the textarea tags.

If you want a drop down option thingy like this use the code below;

<select name=" "> <option value="A">A</option> <option value="B">B</option> <option value="C">C</option> <option value="D">D</option> </select> <BR> This is a bit different again fill in the name bit but what you but in value will appear in your email not in the form, the words in between the option tags are what you will see on the form

If you want selection things like this use the code below;
A B C D <input type="radio" name=" " value="A">A <input type="radio" name=" " value="B">B <input type="radio" name=" " value="C">C <input type="radio" name=" " value="D">D make sure you put all the names the same and the value works the same way as above^

If you want any of your feilds to be requiered copy and paste this into the first bit;<input type="hidden" name="required_fields" value=""> and in the value bit put the names of you feilds you want to be required. Put commas between them if theres more than 1.

Make sure you put this at the end other wise no one will be able to submit the form<input type="submit" name="send" value="Send!"> <input type="reset" name="reset" value="Reset"> </form>
on to step 12...