In HTML Comment tags are used to insert comments in the HTML code.
HTML code written between comment tag can’t be execute.
<!-- Write your comments here -->
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<!-- <p>This is a paragraph.</p>-->
<!-- Comment -->
</body>
</html>