Have a look at W3C validator
Mostly not a problem with you using <br />, but where it's situated in the code. However, you don't need them, so I agree with above.
*Oh, and I noted this:
<tr>
<td><h2><a name="A-Flowers">A</a></h2> </td>
</tr>
<tr>
<td width="100"><strong>Acacia</strong> </td>
<td width="300">Beauty in retirement; Friendship; Concealed love: Chaste love </td>
</tr>
And:
<td><strong>Gladiolus</strong> </td><br />
<td>Strength of character, remembrance, infatuation, splendid beauty. </td><br />
<td></td>
I don't know much, but I usually go:
<tr>
<td></td>
<td></td>
</tr>
Not
<tr>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
Use colspan instead.
Last edited by RanaD; 02-28-2007 at 05:38 PM..
|