Commenting System is available on this website. It is there in the community forum topics.
Chat with our AI personalities
The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are The comment tags which are
it is when you can comment
Yes, you can use the multiline comment. Start the comment with /* and end the comment with */
There are two ways:The single line comment with a double slash //. Everything after the double slash on a single line is commented out.The multi-line comment using a /* to open, and a */ to close.A good IDE will color code the comments instantly.
To add a comment in HTML 4, 5, or XHTML, you can use the comment tag. The tag looks like this: <!-- This is a comment. This is only a comment --> You can only use two hyphens in XHTML, and the space must be present for validation. This can be a multi-line comment by simply adding newlines. <!-- This is a comment. This is only a comment -->