Thanks Anne,
I guess I really have no business messing with all of this..... I don't know how to fix this stuff, or I guess how to actually find it, I don't know. This thing shows the errors and I understand that, but where they actually are in my files on my server......I'm going to keep looking.

I guess I just don't get how to find them from looking at the validators source to looking at the actual files.
Validation Output: 3 Errors
(1)
Error end tag for X omitted, but OMITTAG NO was specified
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
Line 1309, column 7: end tag for "div" omitted, but OMITTAG NO was specified
</body></html>
(2&3)
Error end tag for X which is not finished
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 require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.
Line 783, column 26: end tag for "ul" which is not finished
</ul>
Line 859, column 21: end tag for "ul" which is not finished
</ul>
Bookmarks