HTML COMMENTS 


HTML Comments क्या है?

HTML Comment एक HTML Code होता है जिसे Browser Ignore करता है और इस Code को Webpage में दिखाया भी नहीं जाता हैं। 

जो Content HTML Comments Tag के अंदर लिखा जाता है इसे केवल Browser या Developers ही देख सकते हैं। 

ये Comment End Users को Show नहीं होता हैं।

Syntax of HTML Comment : 

HTML comments are written between <!-- and -->

                   <!-- Write your comments here -->

                   ध्यान दें कि प्रारंभ टैग में एक विस्मयादिबोधक बिंदु (!) है, लेकिन अंत टैग में नहीं।                     

उदाहरण:

<!DOCTYPE html>

<html>

      <body>

             <!-- This is a comment -->

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

             <!-- Comments are not displayed in the browser -->

       </body>

</html>

Output:

This is a paragraph.