Menu

HTML TUTORIALS - HTML Comments

HTML Comments

ADVERTISEMENTS


<!--   This is commented out -->

ADVERTISEMENTS


< !--   This is commented out -->

ADVERTISEMENTS


<!--   
This is a multiline comment <br />
and can span through as many as lines you like.
-->


<!--[if IE 6]>
Special instructions for IE 6 here
<![endif]-->


<p>This is <comment>not</comment> Internet Explorer.</p>


<script>
<!-- 
document.write("Hello World!")
//-->
</script>


<style>
<!-- 
img{
  border:0px;
}
//-->
</style>