HTML Comment basically something in an HTML document that is completely ignored by the browser. This means even if you will write the comment on your HTML page either on the head, on the body so it will not be reflected as the output in the browser. Because comments’ purpose is to give the information to your colleagues. HTML Comment can help you to understand the source code of other persons.
<!DOCTYPE html>
<html>
<head>
<title>HTML Comment</title>
<!-- this is the title of the web page -->
</head>
<body>
<div>
<p>This is Post from wuschools.com and this text is visible</p>
<!--
Hello, world! I am a comment and I am
displayed in multiple lines!
-->
</div>
</body>
</html>
Read more
Comments
Post a Comment