예시
HTML에 문서 제목을 추가하는 방법을 배우기 위해 다음 코드를 실행할 수 있습니다 -
<!DOCTYPE html> <html> <head> <title>Title comes here</title> </head> <body> <p>title tag is used for indicating the title of the HTML document. HTML document title is visible via browser’s title bar.</p> </body> </html>