HTML 주석은 태그 사이에 배치됩니다. 따라서 태그 안에 배치된 모든 콘텐츠는 주석으로 처리되고 브라우저에서 완전히 무시됩니다.
HTML의 한 줄 주석
예시
HTML에서 한 줄 주석의 예를 살펴보겠습니다. −
<!DOCTYPE html> <html> <head> <!-- Document Header Starts --> <title>This is document title</title> </head> <!-- Document Header Ends --> <body> <p>Document content goes here.....</p> </body> </html>
출력
그러면 다음과 같은 출력이 생성됩니다. 주석의 텍스트는 인쇄되지 않습니다 -
HTML의 여러 줄 주석
예시
HTML에서 여러 줄 주석을 설정할 수도 있습니다. 예를 들어 보겠습니다 -
<!DOCTYPE html> <html> <head> <!-- Document Header Starts --> <title>This is document title</title> </head> <!-- Document Header Ends --> <body> <h2>Heading Two</h2> <!-- This is a multiline comment and it can span through as many as lines you like. --> <p>Document content goes here.....</p> <p>We have set comments in the document as well, but it won't get displayed.</p> </body> </html>
출력
그러면 다음과 같은 출력이 생성됩니다. 여러 줄 주석의 텍스트가 표시되지 않습니다 -