HTML Comments

What are Comments?

HTML comments are not displayed in the browser.

Example

<!-- This is a comment -->

<h1>Hello World</h1>

<!-- Paragraph below -->
<p>This is visible text</p>

<!-- <p>This line is commented and will not display</p> -->
Try it Yourself
<!-- -->

HTML comment syntax

Hidden

Not visible in browser

Notes

Used for developer notes

Summary