Can we write a comment into the HTML?
Yes,HTML provide us facility to write comments on HTML file.Comments that we write on HTML file are ignored by the browser so it will not display on browser.Syntax:
Example:
<!-- Here write your comment -->
<html>
<body>
<!--Which you here not will displayed on browser-->
<p>R4R Welcomes You!</p>
</body>
</html>
Output:
R4R Welcomes You!
Yes,HTML provide us facility to write comments on HTML file.Comments that we write on HTML file are ignored by the browser so it will not display on browser.Syntax:
Example:
<!-- Here write your comment -->
<html>
<body>
<!--Which you here not will displayed on browser-->
<p>R4R Welcomes You!</p>
</body>
</html>
Output:
R4R Welcomes You!