HTML Comments

HTML Comments

Comments are used in the HTML source to comment lines of code or to put notifications in the source page.
Comments are ignored by the browser.
The HTML comments uses the following syntax:


HTML Comments

<!DOCTYPE html>
<html>
	<head>
		
		HTML Comments
	</head>
<body>
	

	
	

This is a paragraph with comment inside the source code.

</body> </html>