1<!--This is a comment in html.-->
2<!--You can put comments enywhere! It does not care if it is mid peice of
3code in a peice of code! You must put the ending arrows in or it will
4think everything is a comment! Note you can comment over multiple lines.
5Use a ! at the start arrow, this may not make sence as the rest of
6html uses tags where ! is at the ends.-->
1In HTML, to do multiline comment <!-- --> is used
2
3<!-- This is
4 multi line comment -->
1Insert a single-line, or multi-line comment.
2Comments are designated by the tags <! -- and -->
3
4Use the comment function to hide scripts on unsupported browsers
5. If you are programming in JavaScript or VBScript,
6you can use the comment function to hide the script on browsers
7that don't support it. Insert the comment at the start of the
8script, and end it with //--> to ensure that the script works
9on browsers that do support it.