HTML Comments

HTML Comments

On this page

HTML Comments

<!DOCTYPE html>
    <html>
    
    <head>
        <title>HTML Comments</title>
    </head>
    
    <body>
            <!-- This is a Comments not displayed in the browser -->
             <p>Single line comments</p>
             <!-- single line comments -->
             <p>Multi line comments</p>
             <!-- Multi line comments 
             fisrt
             second -->
    </body>
    
    </html>
    

Output

Single line comments
    
    Multi line comments