HTML comments
From w3cyberlearnings
Contents |
HTML - comment html script
Comment tags uses to comment the HTML elements or contents, and it will not be displayed on the browser.
HTML - Syntax comment html script
<!-- comment -->
Example 1 TRY-IT
<html> <head> <title>Comments</title> </head> <body> <!-- this is comment place here --> <h3>HTML comment</h3> <!-- header 3 --> <p>I love to start up.</p><!-- paragraph --> <!-- <p> will not be display </p>--> </body> </html>
Related Link
- HTML - First Page
- HTML - Elements
- HTML - Comments
- HTML - Attributes