Revision: 16463
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at August 5, 2009 06:03 by thesmu
Initial Code
<!-- ��� --> Usage Recommendation use it <!-- ��� --> allows you to insert comments into an HTML document and have them completely ignored by the browser. This is useful for such things as revision histories and notes about how to improve the document. For example, this code <!-- Creation Date: June 21, 1996 --> <!-- Modifications: --> <!-- Sep 26, 1996: Added Links to Steve's Page --> <!-- Oct 10, 1996: Updated product list --> produces this (nothing): <!-- ��� --> will even "comment out" other tags. Everything is commented out until the closing -->. However, commenting out code tends to result in sloppy code. The best use for <!-- ��� --> in this sense is for experimentation, to try out different code without deleting other attempts. But when the experimentation is done, take out the unused code. For example: <!-- <IMG SRC="biguglypumpkin.gif" ALT="pumpkin"> --> <IMG SRC="pumpkin.gif" ALT="pumpkin"> would be good for trying out different GIFs, but take out the commented part after you've decided on an image. Comments may not have double hyphens (--) within them. This is because technically the comment ends with --, not -->. In practice virtually all browsers don't end the comment until -->.
Initial URL
http://www.htmlcodetutorial.com/_33n45n45n.html
Initial Description
comment out HTML
Initial Title
comment out HTML
Initial Tags
html, code
Initial Language
HTML