HTML
태그에 주석을 달 때 를 사용하는 것이 좋습니다. 이 태그는 모든 브라우저와 호환됩니다.
참고 - HTML5에서 더 이상 사용되지 않는
예시
<!DOCTYPE html> <html> <head> <title>HTML <!--....--> Tag</title> </head> <body> <comment>This is a commented line in IE</comment> <!-- This is a commented line supported by almost every browser. It will not appear in output as its a comment. --> </body> </html>