태그는 HTML 페이지의 모든 헤드 요소에 대한 컨테이너입니다. … 태그를 추가하는 것은 매우 쉽습니다. 그 아래에 문서의 제목을 추가하거나 메타 정보, 스타일, 스크립트 등을 추가합니다.
예시
다음 코드를 실행하여 HTML 페이지에
태그를 추가할 수 있습니다.<!DOCTYPE html> <html> <head> <title>HTML head tag</title> </head> <body> <h2>Working with HTML head tag</h2> <p>This is demo text.</p> <p>Displaying how head tag is used in HTML. Add title in it or meta information about the document.</p> </body> </html>
출력