Re: Markup Validation
Many of those errors are "cascade" errors. That is, the first error triggers a second one which triggers a third one, and so on. From what I can see the first error is just an incorrect closing tag in one of the head tags...
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
So find where you put the code for the favicon, fix it with the correct closing for the XHTML doctype, then redo the validation. It should be...
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
Note the addition of a space and a slash at the end of the bracket. (The space is also needed to fix several other errors.)
Fix the next one at the top of the list, and so on. most of the errors will magically disappear after you fix the first few. (Don't worry about the ampersand ones. Yes, technically they're errors, but they won't have any effect on anything else.)
Rob
Breakfast: the most important donut of the day.
Bookmarks