|

Forms must be enclosed in the following tags <Form>...</Form>,
to be able to work. Let's go ahead and create a form that will allow
your site's visitors to submit their input.
Visitors will be able to submit the following:
- Name
- E-mail
- Comments
We'll give our form the name Input.
Source Code
<form method="post" action="/cgi/file.asp"
name="Input">
<p> <font face="Arial, Helvetica, sans-serif"
size="2">Name:
<input type="text" name="Name">
<br>
E-mail:
<input type="text" name="E-mail">
<br>
Comments<br>
<textarea name="comments" cols="15" rows="5"></textarea>
<br>
<input type="submit" name="Submit" value="Submit">
<input type="reset" name="Submit2" value="Reset">
</font></p>
</form>
Let's now go ahead and find what this source code
means.
|