Learn Basic HTML Complete Course part 20

HTML Comments

Comments are some text or code written in your code to give an explanation about the code, and not visible to the user. Comments which are used for HTML file are known as HTML comments. Anything written between these tags will be ignored by the browser, so comments will not be visible on the webpage.

Comments of any code make code easy to understand and increase readability of code.

Comments are also part of the code, which gives an explanation of the code.



How to add comment In HTML

You can add comments in your HTML file using <! -- ... --> tag. So if you will write anything between theses comment tag that will be treated as comment and browser will not read it.

Syntax

<! -- Write commented text here -->  

📍The commented code will not be visible to a webpage, and hence you can use comment tag for documentation purpose, and debugging purpose:


Example

<!DOCTYPE html> 
<html> 
<!-- This is Header section --> 
<head> 
    <!-- Internal CSS --> 
    <style> 
        h2.test, p.test{ 
            text-align: center; 
            background-color: #f0f8ff; 
            font-size: 30px; 
            color: red; 
        } 
    </style> 
</head> 
 
<!-- This is body section, write code here which you want to display on web-page --> 
<body> 
    <!-- heading tag --> 
<h2 class="test">First WebPage</h2> 
 
<!-- Paragraph tag --> 
<p class="test">Write your Content here!!!</p> 
</body> 
</html>    

output:

First WebPage

Write your Content here!!!


Post a Comment

© Top Blog Pk. All rights reserved. Developed by Jago Desain