Horje
HTML <!--...--> Tag

HTML Tag Defines a comment


Example of HTML <!--...--> Tag

An HTML comment:
index.html
Example: HTML
 <!--This is a comment. Comments are not displayed in the browser-->

<p>This is a paragraph.</p> 

Output should be:

Example of HTML <!--...--> Tag

Definition and Usage HTML <!--...--> Tag

The comment tag is used to insert comments in the source code. Comments are not displayed in the browsers. You can use comments to explain your code, which can help you when you edit the source code at a later date. This is especially useful if you have a lot of code.

Browser Support HTML <!--...--> Tag

Output should be:

Browser Support HTML <!--...--> Tag

Tips and Notes HTML <!--...--> Tag

You can use the comment tag to "hide" scripts from browsers without support for scripts (so they don't show them as plain text):

Note: The two forward slashes at the end of comment line (//) is the JavaScript comment symbol. This prevents JavaScript from executing the --> tag.
<script type="text/javascript">
<!--
function displayMsg() {
  alert("Hello World!")
}
//-->
</script>  





Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin


Read Article
https://horje.com/learn/1434/reference