Comments


This text is taken from a page in the HTML Tutorial from the Computer Sciences department at the University of Wisconsin, Madison.
( http://www.cs.wisc.edu/docs/htmltutorial.html)

Another useful structure is the HTML comment, produced with <!-- and -->. The contents of the comment should not be displayed by the browser. (However, some versions of Mosaic are broken and still interpret tags within comments, so you can't comment out tags. This is unfortunate.) For example, the text

This here <!-- right here --> is a comment.
should appear as

This here is a comment.


Up: Writing HTML