Forum Moderators: open
I am having trouble with the following:
<td id="rightframe"> <p align="center"><a href="order.html"><img src="imagery/order-now.gif" alt="Click Here To Order One Of blue or green widgets" width="200" height="50" border="0" /></a></p>
<p> </p>
I get error message saying document type does not permit element <td> in content of element <td> and then it says close tag for element </td> omitted but document type doesn't permit it
<td id="rightframe">
<p align="center">
<a href="order.html">
<img src="imagery/order-now.gif" alt="Click Here To Order One Of blue or green widgets" width="200" height="50" border="0" />
</a>
</p>
<p>
</p>
</td>
I find indenting my code helps when I am looking for errors such as this. Something I learned from a (now retired) coder of the old school some 10 years ago. ;)