HTM65
DESCRIPTION

OUTPUT

SOURCE CODE











DESCRIPTION


Form with text area


OUTPUT

A form using text areas

We love to hear from you:


SOURCE CODE

<HTML>
<HEAD><TITLE>A Web page with a form using text areas</TITLE></HEAD>
<BODY>
<CENTER><H1><FONT COLOR = blue>A form using text areas</FONT></H1></CENTER>
<FORM NAME = myForm ACTION = mailto:[email protected] METHOD = post>
<FONT COLOR = red>We love to hear from you:</FONT><BR>
<TEXTAREA NAME = myTextArea ROWS = 10 COLS = 25 WRAP = soft>
Please input up to 10 lines of text as your feedback and comments.
Any additional lines beyond the first ten are ignored by our database.
Thank you for your cooperation!
</TEXTAREA><BR>
<INPUT TYPE = submit NAME = submitButton VALUE = Sent It>
<INPUT TYPE = reset NAME = resetButton VALUE = Clear It>
</FORM>
</BODY>
</HTML>