FORM

This is a simple form which can be a page by itself or pasted into a page. I set it up in a table which I find makes things easier, too add or modify inputs the important bit is shown below and you just use a different identifier instead of "category".
<INPUT type=text name="Category">

Company Name:
Phone No:
Category:
Email:
Web Address:
 
 
Comments (For Web Page)


This works for most applications but I have been told by Hotmail users that it say it has sent the form but doesn't. So I have started using the email form this just fills in your email with addressee, subject, and comments to go in the body of the email the user then fills in the blanks in the the email and sends as usual.

Home


 

Source Code


<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
   <meta name="GENERATOR" content="Mozilla/4.8 [en] (Windows NT 5.0; U) [Netscape]">
   <title>FORM</title>
</head>
<body text="#000000" bgcolor="#FFFFCC" link="#0000EE" vlink="#551A8B" alink="#FF0000">

<blockquote>
<center><b><i><u><font size=+4>FORM</font></u></i></b></center>

<p><font size=+1>This is a simple form which can be a page by itself or
pasted into a page. I set it up in a table which I find makes things easier,
too add or modify inputs the important bit is shown below and you just
use a different identifier instead of "category".</font>
<br><font size=+1>&lt;INPUT type=text name="Category"></font></blockquote>
<form
action="mailto:YOUR_EMAILADDRESS_or_whoever_needs_to_recieve_the_info"
method="post"
<PRE>
<table BORDER=0 CELLSPACING=10 COLS=4 WIDTH="75%" >
<tr>
<td></td>

<td></td>

<td></td>

<td></td>
</tr>

<tr>
<td>
<div align=right><font size=+1>Company Name:</font></div>
</td>

<td><input type=text name="name"></td>

<td>
<div align=right><font size=+1>Phone No:</font></div>
</td>

<td><input type=text name="phone"></td>
</tr>

<tr>
<td>
<div align=right><font size=+1>Category:</font></div>
</td>

<td><input type=text name="Catagory"></td>

<td>
<div align=right><font size=+1>Email:</font></div>
</td>

<td><input type=text name="email"></td>
</tr>

<tr>
<td>
<div align=right><font size=+1>Web Address:</font></div>
</td>

<td><input type=text name="www"></td>

<td></td>

<td></td>
</tr>

<tr>
<td>&nbsp;</td>

<td></td>

<td><input type=reset size-40></td>

<td><input type=submit></td>
</tr>

<tr>
<td>&nbsp;</td>

<td></td>

<td></td>

<td></td>
</tr>
</table>

<blockquote><font size=+1>Comments (For Web Page)</font></blockquote>

<center><textarea name ="comments" rows="10" cols="60" wrap></textarea></center>

<p><br>
<blockquote>
<center><font size=+1>This works for most applications but I have been
told by Hotmail users that it say it has sent the form but doesn't. So
I have started using the <a href="email.htm">email form</a> this just fills
in your email with addressee, subject, and comments to go in the body of
the email the user then fills in the blanks in the the email and sends
as usual.</font></center>
</blockquote>
</form>
<center><a href="homepage.htm">Back To Home</a></center>

</body>
</html>

Home