HTML comment
From w3cyberlearnings
HTML Comment
Comment is not displayed in the browsers.
Syntax
<!-- will not be displayed in the browser -->
Example TRY-IT
<!DOCTYPE html> <html> <head> <title>Comment</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <!--<div>TODO write content</div> --> <!-- another one--> <p>Comment</p> </body> </html>