Continue

 8. HTML-COMMENTS

Comment is a piece of code which is ignored by any web browser. It is a good practice to add comments into your HTML code, especially in complex documents, to indicate sections of a document, and any other notes to anyone looking at the code. Comments help you and others understand your code and increases code readability.

HTML comments are placed in between <...> tags. So, any content placed with-in <...> tags will be treated as comment and will be completely ignored by the browser.

Example

<!DOCTYPE html>

<html>

<head> <l Document Header Starts->

<title>This is document title</title>

</head> <!-- Document Header Ends --

<body>

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

</body>

</html>

This will produce the following result without displaying the content given as a part of

comments:

Document content goes here.....

Comments

Popular Posts