I've been trying to tell you, the line numbers are there:
Quote:
Line 1906, Column 5: end tag for "tr" which is not finished.
Look up that line number and find the </ tr> around it. Then read what the error is:
Quote:
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
So, find the tag and then consider what the error is.
You need to do that for each of the last few errors.