HTML Comments

Where people are unable to see these comments is whenever people browse the webpage, but they can be seen by anyone that inspects the source code of the page. Comments are a good practice because however well you know the code when you write it, it’s so much easier to add comments than to comprehend the code without them when you come back to it (or have someone else) later.

 

Comments are often used to tell which is the beginning and end of sections or to provide notes to others to help understand the code structure on longer pages. An example of this is that comments could show where in the feature specific things, like navigation or content sections, begin and finish. Comments can also be used strategically around blocks of code to temporarily disable them, without having to delete the whole block altogether.

 

Comments help make code more readable but they’re code, and anyone reading the page can see the comments. In other words, though comments are very helpful to organization and cooperation, never write sensitive information in comments.

				
					<!-- This is the start of the navigation section -->
<nav>
  <ul>
    <li><a href="home.html">Home</a></li>
    <li><a href="about.html">About</a></li>
    <li><a href="contact.html">Contact</a></li>
  </ul>
</nav>
<!-- End of the navigation section -->

<!-- This is a temporary block of code that has been disabled -->
<!-- 
<section>
  <h1>Upcoming Events</h1>
  <p>Details will be added soon.</p>
</section>
-->

				
			

Some Key Points About Comments in HTML:

  • Invisible to Users: HTML Comments are not shown when a visitor navigates through the webpage_. However, anyone who can see the page’s source code can see them.
  • Good Practice: Comments are a good practice in coding. You can make sense of your code just fine when you create it, but comments make things easier to come back and understand or help somebody else work on your code later.
  • Code Organization: Sections are frequently designated by comments, denoting the start and close of those sections. For instance, they can tell you where specific things begin and end, that is, where the navigation menu or content section in a long page starts and ends.
  • Disabling Code: Additionally, parts of code can be temporarily disabled with comments. This is something useful for testing or debugging as you can ‘hide’ the block of code as you wouldn’t just delete it, but you want to keep it around.
  • Readability and Collaboration: Comments help your code be more readable, and it helps your team members understand and work together better.
  • Sensitive Information Warning: Comments are good but don’t put sensitive information in them. This information could be ‘seen’ by others since comments are shown in the source code.

Try It Yourself

Share with friends