|
Here's the code from one of the better web generators:
<FONT FACE="ARIAL, HELVETICA">
<body text="black" bgcolor="white" link="#191919" alink="white" vlink="#696969">
<form name="FormName" action="(Empty Reference!)" method="get">
<font face="Impact" size="6">Store Info<table border="4" cellpadding="0" cellspacing="2" width="80">
<tr>
<td><font face="Impact"><table border="0" cellpadding="0" cellspacing="2" width="454">
<tr>
<td width="160"><font face="Impact"><input type="CHECKBOX" value="CheckboxValue" name="CheckboxName">Store Name</font></td>
<td><input type="TEXT" name="TextfieldName" size="24"></td>
</tr>
</td>
</tr>
</form></table><font>
Properly written, it *should* look like:
<BODY TEXT="black" BGCOLOR="white" LINK="#191919" ALINK="white" VLINK="#696969">
<FORM NAME="FormName" ACTION="http://www.yourfirm.com/CGI-REFERANCE-HERE" METHOD="post">
<FONT FACE="Impact" SIZE="6">Store Info
<TABLE BORDER="4" CELLPADDING="0" CELLSPACING="2" WIDTH="80">
<TR>
<TD>
<FONT FACE="Impact">
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="2" WIDTH="454">
<TR>
<TD WIDTH="160">
<FONT FACE="Impact">
<INPUT TYPE="CHECKBOX" VALUE= "CheckboxValue" NAME= "CheckboxName"> Store Name
</FONT>
</TD>
</TR>
</TABLE>
</TD>
<TD>
<INPUT type="TEXT" NAME="TextfieldName" SIZE="24">
</TD>
</TR>
</FORM>
</TABLE>
Both these code samples would produce:
|