Hi Arthur,
That's a good example of what I told you about Strict HTML,
all that we open must be closed!At line #116 a <tr.... is open, and never closed, then at line #120 a new <tr... begin, but browser
assume that at line #119 a </tr> should be there and act as it! Browser being clevest it see a long
repetition of <tr><td></td></tr> and "fill the hole"... That's the difference of being displayed ok
and being 'Standards compilant".
Also, in the same time, the syntax for javascript block are bad (old way),
Your using: <script language="JavaScript">, instead of <script type="text/javascript">
Finally, your very last image (the blue counter) miss the closing
/>Others are all paired, like: <p>...</p> because content is delimited by these tags.
But image, as br, input, and a few others, all the work is done between ONE bracket set
ie. <....>, then it need a slash before closing bracket to tell the browser not search for a pair,
as long as it could be: <img scr="
http://my_real_long_path_to_my/picture.jpg" alt="Text to replace image" title="The title when passing on image with cursor" onclick="Do a javascript"....
/>You'll see only with the </tr> added, you'll pass from 38 errors... to a few!!
Regards,
Jacques