Continue

 Multiline Comments

So far we have seen single line comments, but HTML supports multi-line comments as well.

You can comment multiple lines by the special beginning tag <!--and ending tag--> placed before the first line and end of the last line as shown in the given example below.

Example

<!DOCTYPE html> 

<html>

<head>

<title>Multiline Comments</title>

</head>

<body>

<!--

This is a multiline comment and it can span through as many as lines you like.

-->

<p>Document content goes here.....</p>

</body>

</html>

This will produce the following result:

Document content goes here.....

Comments

Popular Posts