HTML <!-- Comment -->
query_builder | Christopher PisaniTo make a comment in the HTML code, you need to enclose your comment in the tag <!-- -->.
Using comments within your code is very useful, especially when working with other developers. A page of code can contain hundreds or thousands of code, and will make it easier to find a specific piece of code.
Comment example:
<!-- This comment will not show in the user browser -->
This comment will show in the browser
<!--
A comment covers multiple lines (example 1)
A comment covers multiple lines (example 2)
A comment covers multiple lines (example 3)
-->
<!--
<div id="example">
This element will not show neither...
</div>
-->
Important Note :
A comment within a comment is not permitted.
Available Attributes
No specific attributes are assigned for this element, other than the standard global attributes.