Programming Code Center(PCC)
[HTML]

(PCC)::[How-to-use-Hidden-comments-in-HTML]::[html]

File Name : index.html

<!DOCTYPE html>
<html>
<body>

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

</body>
</html>

Output :

This is a paragraph.