The rest consists of finishing the form with the type of inputs needed to get
the information. The first in this case is the title of the input:
Your Name: and then the input tag its self:
<INPUT SIZE=30 NAME="Name">
The second input title is: Your E-Mail
Address: and the input tag:
<INPUT SIZE=30 NAME="Address">
The third input title is: Your Website: and the
input tag:
<INPUT SIZE=50 NAME="Name">
The forth input title is: Your Message: and then
the textarea tags:
<TEXTAREA NAME="Message" WRAP=ON ROWS=7 COLS=60></TEXTAREA>
The next input tag is a submit button:
<INPUT TYPE=Submit VALUE="Send Message">
The next input tag is a reset button:
<INPUT TYPE=Reset VALUE=" Clear Form ">
and don't forget the closing tag:
</FORM>.
Below it is put together as it would be on a Web page.
<FORM METHOD=Post ACTION="mailto:your email address" ENCTYPE="text/plain">
Your Name:
<INPUT SIZE=30 NAME="Name">
Your E-Mail Address:
<INPUT SIZE=30 NAME="Address">
Your WebSite:
<INPUT SIZE=50 NAME="Name">
Your Message:
<TEXTAREA NAME="Message" WRAP=ON ROWS=7 COLS=60></TEXTAREA>
<INPUT TYPE=Submit VALUE="Send Message">
<INPUT TYPE=Reset VALUE=" Clear Form ">
</FORM>
It will look and work like this, Send me a message.
© Copyright 2002 Carnegie Webhead's