HTML Comments
Write notes in HTML without showing them on the page.
David Miller
Dec 21, 2025
35.9k1,077
Comments are not visible on the page, but developers can see them in page source.
Example
<!-- This is a comment -->
<h1>Welcome</h1>
Preview
Welcome
Use comments for
- marking sections
- reminders while building layout
Do not put
- passwords
- secret keys
#HTML#Beginner