The comment tag is used to insert a comment in the source code. A comment will be ignored by the browser.
Syntax:
<!-- comments -->
Example:
<html>
<head>
<title>creativemission- IT training & Research center </title>
</head>
<body>
<!-- this line will not be printed -->
<h1>Welcome to creativemission.</h1>
welcome <br/> <hr/> welcome to our world!
</body>
</html>