HTML comment Tag: Main Tips
- The
<!-- -->
is an HTML comment tag. - To comment out in HTML, insert information between
<!--
and-->
tags (browsers won't show these notes). - Commenting in HTML allows developers to leave notes about their code, its functionality or to indicate necessary changes for the future.
Theory is great, but we recommend digging deeper!
Commenting in HTML
This HTML comment tag incorporates a comment in the source code of the HTML document. The example below adds a comment HTML:Example
<!--This is an example text that won't be displayed in the browser-->
<p>This will be shown in the browser.</p>
Example
<div>
<p>This text is visible. Check the source code for multi-line comment.</p>
<!--
Hello, world! I am a comment and I am
displayed in multiple lines!
-->
</div>
Note: there used to be an HTML <comment> tag, but it is not supported by any modern browser. Don't use it to hide your comments.
from Fruitty Blog https://ift.tt/31rnvtm
via IFTTT
No comments:
Post a Comment