HTML CSS examples for HTML:Comments
Example of HTML comments
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML comments</title> </head> <!--from ww w. j av a 2 s . c o m--> <body> <!-- this is an HTML comment --> <!-- Comments are not displayed, by the browser --> <h1>This is a heading</h1> <p>This is a paragraph.</p> <!-- this is an HTML comment --> <!-- Comments are not displayed, by the browser --> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>