We can add comments to our HTML source by using the following syntax
<!—help4code.com -->
Comments will not displayed by the browser. Browser interpreter can not interpret the commented line in our code.
EX<!DOCTYPE html> <html> <body> <!-- help4code.com --> <p>4000 plus programs</p> </body> </html>