HTML <!--...--> tag
Definition and Usage
The comment tag is used to insert a comment in the source code. A comment
will be ignored by the browser. You can use comments to explain your code, which
can help you when you edit the source code at a later date.
You can also store program-specific information inside comments. In this case
they will not be visible for the user, but they are still available to the
program.
Example
| Source |
Output |
| <!--This is a comment-->
<p>This is a text</p>
|
This is a text
|
Attributes: NONE
|