|
Cut
and paste the following code into your new blank document.
<form
action="mailto:youremail@test.com" enctype="text/plain"
method="post" >
Your email address:<br>
<input type="text" name="emailAddress"
size=64 maxlength=64 >
<br>
Your name:
<br>
<input type="text" name="theName" size=23
maxlength=64 >
<br>
Your comments
:<br>
<textarea name="theComments" rows=12 cols=55 >
</textarea>
<p>
<input type=submit value="Send">
</p>
<p>
<input type=reset value="Recycle!">
</p>
</form>
|