제목은 모든 HTML 문서에서 필수적입니다. 문서의 제목을 정의하려면
예시
다음 코드를 시도하여 HTML 페이지에 제목을 삽입할 수 있습니다. 제목은 웹 브라우저 도구 모음에 표시됩니다.
<!DOCTYPE html> <html> <head> <title>HTML Title Tag</title> </head> <body> <p>The content of the documents gets added here.</p> </body> </html>
출력
The content of the documents gets added here.