I have a form in the following table, which works fine, and displays correctly., BUT, will not validate.
The error is with the <form> tags. It is telling me that they are not closed, or not open.
I think that it is because of the fact that the form tags are used across cells???
Any insight on how to get this fixed??
The actual page is located at
Gary
Code:
<table class="splashtable" cellpadding="0" cellspacing="0">
<tr>
<td class="td1">
</td>
</tr>
<tr>
<td class="td2"><font class="headinglrgyel">[Contact Me]</font><hr class="hryellow" />
</td>
</tr>
<tr>
<td class="td3">
<table class="contactus" cellpadding="0" cellspacing="0">
<tr>
<td class="tdcontactus1" colspan="2">
<font class="contentyel">Comments, Questions, And Feedback</font><br /><br />
</td>
</tr>
<tr>
<td class="tdcontactus2">
<form method="post" action="contactprocess.asp">
<font class="contentred">Feedback: </font><br />
<a class="helpcontentyel" href="javascript:popUp('help1.asp')">[?]</a>
</td>
<td class="tdcontactus3">
<textarea rows="6" name="contact" cols="61" style="border:1px solid #282484; vertical-align: top; font-size: 13px; font-family: Verdana; overflow: auto; color:#282484"></textarea>
</td>
</tr>
<tr>
<td class="tdcontactus4" colspan="2">
<font class="contentred">Your Name: </font>
<input type="text" size="36" name="contactname" style="border:1px solid #282484; font-size: 13px; font-family: Verdana; color: #282484"/>
</td>
</tr>
<tr>
<td class="tdcontactus5" colspan="2">
<font class="contentred">Email Address: </font>
<input type="text" size="36" name="contactemail" style="border:1px solid #282484; font-size: 13px; font-family: Verdana; color: #282484"/>
</td>
</tr>
<tr>
<td class="tdcontactus6" colspan="2">
<input type="submit" value="[submit]" name="contactsubmit" style="border-style: solid; border-width: 0; color: #CC0000; font-size: 16px; font-family: Verdana; font-weight: bold; background-color: #282484" />
</form>
</td>
</tr>
</table>
The error is with the <form> tags. It is telling me that they are not closed, or not open.
I think that it is because of the fact that the form tags are used across cells???
Any insight on how to get this fixed??
The actual page is located at
Gary