I see you add a script in the end of the files
HTML Code:
<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript">
var websiteID='pokemonlake.com';
</script>
<script type="text/javascript" src="http://analytics.hosting24.com/s.php"></script>
<noscript>
<a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/s.php?websiteID=pokemonlake.com" alt="web hosting" /></a>
</noscript>
<!-- End Of Code -->
This code causes the users unable of having valid code as they'll either have to ommit
HTML Code:
</body></html>
or the code will go under
which still make it invalid. You could do the code like this:
HTML Code:
<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript">
var websiteID='pokemonlake.com';
</script>
<script type="text/javascript" src="http://analytics.hosting24.com/s.php"></script>
<noscript>
<a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/s.php?websiteID=pokemonlake.com" alt="web hosting" /></a>
</noscript>
<!-- End Of Code -->
</body>
</html>
Or atleast not put it at the end of the document.