Comment se cacher dans HTML
#elementID{
display:none;
}
Mehrshad Farzaneh
#elementID{
display:none;
}
<!DOCTYPE html>
<html>
<body>
<!-- This is a comment -->
<p>This is a paragraph.</p>
<!-- Comments are not displayed in the browser -->
</body>
</html>