HTML comments are not displayed in the browser, but they help document and explain your source code. Comments improve code readability and make maintenance easier.
<!-- and -->.
Comments can be used to place reminders, explanations, or notes inside your HTML code.
<!-- This is a comment -->
<p>This is a paragraph.</p>
<!-- Remember to add more information here -->
<!-- to start a comment.--> to end a comment.<!-- This is a comment -->HTML comments can span across multiple lines.
<!--
This is a multi-line comment.
It can span across several lines.
-->
--> ends the comment.
Which syntax is used for HTML comments?