Skip to main content

Featured

Mini Calculator in Python

                 Calculator Using Python                     num1=10                                                                                                                                         num2 =20                         ans1 = num1 + num2                     print ( "Th...

HTML Comments

                                                                                                                                                                             

              HTML <!--...--> Tag

 

   An HTML comment:      

                        

                <!--This is a comment. Comments are not displayed in the browser-->

                <p>This is a paragraph.</p>
 
 
 
       Like any other language HTML also provides the way to give comments in the file. These comments are not shown to the user. These comments are for the designer use. These are also written inside any other tag in HTML.
 
       You can also comment out the code which you don't want to use in the file but is useful in the near time so we can comment it out instead of deleting the whole code.
 
 
        We can also use these to hide the scripts from the browser. 

Comments

Popular Posts