how to comment in html

A comment is a piece of code that is ignored by any web browser. It is a good practice to add comments into your HTML code, especially in complex documents, to indicate sections of a document, and any other notes to anyone looking at the code. Comments help you and others understand your code and increase code readability.

HTML comments are placed in between <!– … –> tags. So, any content placed with-in <!– … –> tags will be treated as comment and will be completely ignored by the browser.

<!-- This is a comment -->
<p>This is a paragraph.</p>
<!-- Comments are not displayed in the browser -->

Leave a Comment