Note: If you don't know what a tag is and/or how you must use it we recommend you to read our HTML tags and attributes tutorial that you can find in our HTML tutorials section.
Table of contents
This tag does not have any attribute.
There are no events defined for this tag.
See complete list and information about events in HTMLA simple comment in the code (the comment is invisible).
| Code | View |
|---|---|
|
<p>Comment's begin</p> <!--Here is the comment text--> <p>Comment's end</p> |
Comment's begin Comment's end |
In this case the tag is used to hide a script (in XHTML the script would be completely ignored by the browser).
| Code | View |
|---|---|
|
<script type="text/javascript"> <!-- function gimme_a() { return 'a'; } --> </script> |