• Skip to primary navigation
  • Skip to main content

Tech Honey

The #1 Website for Oracle PL/SQL, OA Framework and HTML

  • Home
  • HTML
    • Tags in HTML
    • HTML Attributes
  • OA Framework
    • Item in OAF
    • Regions in OAF
    • General OAF Topics
  • Oracle
    • statement
    • function
    • clause
    • plsql
    • sql
You are here: Home / HTML / How To Comment In HTML

How To Comment In HTML

August 12, 2013 by techhoneyadmin

Well, how to comment in HTML is a simple question with a simpler answer. As in any other language we can add comments in HTML code.

HTML provides comment tag (<!– ..- ->) for commenting a part of code.

The HTML comment tag makes sure that the comment tag and the part of the code commented are not displayed on browser.

Comments can be useful in two ways:

  1. When we don’t want to execute a part of code
  2. When we want to explain a part of code

Let’s understand the use of each way with example.

Example: How to comment in HTML to not execute a part of HTML code

HTML Code Output
<p> This is a paragraph. </p> <br><!- - This is a comment - - >
<p> This is another paragraph </p>
 This is a paragraph. This is another paragraph

Here we can see that the 2nd line of code having “This is a comment” string is not displayed in the output because it is enclosed by the HTML comment tag (<!—and à)

Example: How to comment in HTML to explain a part of code

HTML Code Output
<p> This is a paragraph </p>
<br><!- - The below code will create
a horizontal line/rule on the
HTML page to make a segregation of
the page sections  - - >
<hr>
This is a paragraph—————————————————————-

Here we can see that in the HTML output the commented part of the HTML code is not displayed. Also, if someone else reads the HTML source code he/she will be able to understand the reason of creating a horizontal rule/line in the HTML page. Hence we have explained our code using comment tag in HTML.

Also note that the comments are in multiple lines, this means that the HTML comment can span multiple lines until the closing comment tag is encountered.


HTML Comment Tag Supporting Browsers:

S. No. Browser Supported(Yes/No)
1 Internet Explorer Yes
2 Firefox Yes
3 Google Chrome Yes
4 Opera Yes
5 Safari Yes

Filed Under: HTML Tagged With: Comment in html, how to comment in HTML, Html comment, HTML comment tag, htmlcommenttag

Copyright © 2023 · Parallax Pro on Genesis Framework · WordPress · Log in