HTML <!-- --> (comment) tag
The <!-- --> tag is used to store comments within HTML code.
Comments are ignored by the web browser and will not be seen on a webpage. They can be placed anywhere within HTML code and can span as many lines as necessary. Comments can also be used within scripts and style sheet definitions to prevent older browsers that do not support scripts and/or styles from showing them as plain text.
Use comments to make your code easier to understand and navigate for yourself and anyone who else who might be working on the same code. This is useful in the present and in the future since you might come back to your code at a future date and not remember what it does but the comments will remind you. Comments simplify things and create better organization allowing you to work faster and more efficiently.
Attributes
NONE. No attributes of it's own, no event attributes, no standard attributes. Use as is.
Example
Tips & notes
Comments are great but keep in mind that using to many comments may slow your webpages down!