HTML Headings [] Insert comments in the HTML source code
Insert comments in the HTML source code
<!DOCTYPE html> <html> <body> <!--This comment will not be displayed--> <p>This is a regular paragraph</p> </body> </html>
Output
This is a regular paragraph