Comment Tag in HTML in Hindi
html comment tag का इस्तेमाल कुछ comment देने के लिए होता है | इससे हम document बना सकते हैं | यानि कोनसा कोड क्यों लिखा गया है वो information, comment में लिखा जाता है | और ये comment, browser read नहीं करता | इसलिए comment browser में दिखाई नहीं देता |
Comment tag को <!– सिंबल सुरु करते हैं, और –> सिंबल से अंत किया जाता है |
<!– comment to get reference in future –>
Comment लिखने के फायदे
Comment लिखने से code readable हो जाता है | Debugging करना आसान हो जाता है | जब आप कई दिन बाद code को देख रहें हैं या कोई नया programmer code को देख रहा है | तो उसे code को समझना आसान हो जाता है, की कोनसा code क्यों लिखा गया है |
उदहारण:
<html> <head> <title>My First Webpage</title> <head> <body> <h1>This is my first HTML Tutorial in Hindi</h1> <!-- some detail about this course --> <p> here you will learn detail knowledge of html</p> <!-- Do not show image right now <img src='img1.jpg" /> --> </body> </html>
Types HTML Comment in Hindi – HTML Comment के प्रकार
HTML Comment 2 प्रकार के होतें हैं :
- Single Line Comment
- Multiple Line Comment
Single Line Comment in HTML
HTML document में single line को comment करने के लिए Single Line Comment का उपयोग होता है |
उदाहरण
<!DOCTYPE html> <html> <head> </head> <body> <!-- <p>CSS Demo</p> --> <p>HTML Demo</p> </body> </html>
Multiple Line Comment in HTML
HTML document में एक से अधिक लाइन को comment करने के लिए Multiple Line Comment का उपयोग होता है |
उदाहरण:
<!DOCTYPE html> <html> <head> </head> <body> <!-- <p>CSS Demo</p> <p>HTML Demo</p>--> </body> </html>