This is just question about comments inside of an HTML page.
For example:
<html>
<head></head>
<body>
<!--
<p><font size="4">--</font></p>
-->
</body>
</html>
Using http://validator.w3.org/check I get the following error message. Does it make sense?
Line 6, Column 21: invalid comment declaration: found character "<" outside comment but inside comment declaration
<p><font size="4">--</font></p>
Check that you are using a proper syntax for your comments, e.g: . This error may appear if you forget the last "--" to close one comment, and later open another.