which is not a comment ... this is a way to hide such a text block from the old browser parser (mostly IE6-)
Just like using CDATA in a tag <script>
... to protect bad parsing data from really weird engines (mostly IE) :)
although the correct way would be to use:
for styles
<style type="text/css">
/*<![CDATA[*/
body { color: yellow; }
/*]]>*/
</style>
for scripts
<script type="text/javascript">
//<![CDATA[
$(function() { ... });
//]]>
</script>
using CDATA
in both cases is the correct and safe way , comment is just a trick to achieve the same end result.
Now, referring to yours , I think this is a very valid link , when you point to W3Schools, look at this:
http://w3fools.com/
source
to share