What are comments and how do you give them in HTML ? question and answer !


Question 

What are comments and how do you give them in HTML ?

Answer 

Comments are notes that are written in an HTML document, but are ignored by the browser and therefore not displayed. There are two ways of creating a comment.

Using <!-- fardin-- >
E.g., <!-- this text will not be displayed by the browser -- >

Using <COMMENT> tag
E.g., <COMMENT> this is a comment </COMMENT>

No comments