<!-- Comments here -->Syntax: Multi line comment
<!-- This is multi line comments. -->
Example: The following code illustrates a single line comment.
<!DOCTYPE html>
<html>
<body>
<h2>
GeeksForGeeks
</h2>
<!-- single line comment -->
<h2>
HTML5: How to comment HTML tags?
</h2>
<!-- Paragraph element -->
<p>GeeksforGeeks</p>
</body>
</html>
Example 2: The following code illustrates the multi line comment.
<!DOCTYPE html>
<html>
<body>
<h2>
GeeksForGeeks
</h2>
<!-- Multi line comment -->
<h2>
HTML5: How to comment HTML tags?
</h2>
<!-- The multi-line comment is useful
to comment multiple lines
Paragraph element -->
<p>GeeksforGeeks </p>
<p>
It is a Good platform For
Computer science students
</p>
</body>
</html>
