We start with the tags , a form has to stand between the tags <form> and </form> this will be the beginning and the end. We have to announch what the form has to do , it has to send an email.
This is how it has to be : <form method="post" action="mailto:email@provider.com"> *Here comes the rest* </form> </p>
Options : We're gonna learn you how to make a text box.
type="text" With this you announce it's an textbox
size="30" With this you announce the length of the textspace is 30 chars
maxlength="50" This decides the lenght of the textspace , this number isn't compared to the code "size".
name="naam" Your giving the textspace a name , so you can reconize it in your e-mail.
You can make the same textspace with an other subject like "email" or "url".
We're gonna continue with the checkboxes. It's a list of options , you have to choose on of them. This is like a little poll. Here you see the code and an example of the checkboxes.