HTML Comment Tag Demo

In HTML, comments are used to leave notes or explanations in the code. They do not appear in the browser.

Example:

<!-- This is a comment -->
<p>This is a paragraph.</p>

Output:

This is a paragraph.

📌 Note: You can inspect this page's source code to see the comment!