HTML Comment
The HTML comment tag is used to add text or code to an HTML document without including it in the Web page when viewed. There are 3 types of comments:.
- single line comment
- Multiline comment
- usind <comment> tag
Single line comment
<!-- write your comment here -->
Multiline comment
<!--
Write your comment here
This is Multiline comment
-->
<comment> tag
<comment> This content is commented </comment>