HOW TO CREATE HIDDEN COMMENTS IN HTML?

This is how to create a hidden comments in HTML. Just add this tag <! > any content inside this tag will be hidden.

Example

<!DOCTYPE html>
<html>
<head>
<head>
<body>
<p>
<! you can’t see what’s writing inside this paragraph >
<p/>
<body>
</html>

Similar Posts