First and foremost error: Parse Model. Check your DOCTYPE, the HTML in that doctype needs to be lower case, grab an example from any website, I do suggest instead of going for HTML 4.01 Transitional, go for XHTML 1.0 transitional.
Code:
<META name="verify-v1" content="VaGP6T+NRhP7ChFYRh9vio5ZhezqGM7+sn7Hss03Yto=" />
What is this used for? If nothing remove it. This is an error you probably will keep having.
The next one is the script from google ads, add an extra </script> right on that same line.
You are also not nesting properly:
Code:
<html> <body> </html> </body>
for example is not valid.
Code:
<html> <body> </body> </html>
is
same with:
Code:
<script> <center> </script> </center>
is also invalid, which is why you get error on line 46 - > 52
because you need to use:
Code:
<script> <center></center> </script>
Fix those simple errors, and then get back to us.