The COMMENT tag is for organizing the source code (HTML) just like the Horizontal Rule <HR> tag is for the web page. The comment tag is used in the BODY area of the code. It can be any length in characters.
It has a beginning tag <!-- and an ending tag -->. Any comments or lines put between these will not be active on the web page. These tags are used to comment on what the next group of instruction codes are going to do. This organization helps if a part of the program does not work or needs to be updated often.
A set of lines as comments :
| <!-- Your comment here --> |
It has a beginning tag <!-- and an ending tag -->. Any comments or lines put between these will not be active on the web page. These tags are used to comment on what the next group of instruction codes are going to do. This organization helps if a part of the program does not work or needs to be updated often.
A set of lines as comments :
|
<!-- This is my comments area. I will place a few lines here and they will be ignored because they are within the comment tags. --> |

