Line 22, Column 30: document type does not allow element "div" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
You've got a <div> inside the <h1>, that's not allowed. Try the other way around:
<div id="...">
<h1>..</h1>
</div>
Line 54, Column 13: end tag for "br" omitted, but OMITTAG NO was specified
the <br /> tag has no closing tag. Replace by <br />
Line 96, Column 115: required attribute "alt" not specified
Specify an alt="..." in your <img> tag
Line 96, Column 119: end tag for "img" omitted, but OMITTAG NO was specified
related to the previous error
You have no closing <body> (</body>) and <html> (</html>) tags, add them to your footer
Peter