HTML | Comment in HTML By. Sunrise Computers
HYPERTEXT MARKUP LANGUAGE (HTML)
HTML | COMMENTS
Comments ये दिया हुआ HTML का code समझने के लिए single या multiple lines में दिया जाता है | Comments के माध्यम से code को समझने की क्षमता बढ़ जाती है | Comments को browser द्वारा ignore किया जाता है | HTML Comments को <!-- और --> के बीचे में लिखा जाता है | दिए हुए comments को browser द्वारा webpage पर display नहीं किया जाता है |
Single Line Comment
Source Code
<!DOCTYPE html>
<html>
<body>
<!-- HERE WE PROVIDE QUALITY & UPDATE EDUCATION -->
<p>WELCOME TO SUNRISE COMPUTERS</p>
</body>
</html>
Output
WELCOME TO SUNRISE COMPUTER CLASSES
Multiple Line Comment
Source Code
<!DOCTYPE html>
<html>
<body>
<!--We Provide Quality Education
as well as Update Education-->
<p>WELCOME TO SUNRISE COMPUTER CLASSES</p>
</body>
</html>
Output
WELCOME TO SUNRISE COMPUTER CLASSES
For Any Doubt Clear on Telegram Discussion Group
Comments
Post a Comment