제목 사용 HTML 문서에 추가 정보를 추가하는 속성입니다.
예시
다음 코드를 실행하여 title을 구현할 수 있습니다. 속성 -
<!DOCTYPE html> <html> <head> <title>HTML base Tag</title> <base href = "https://www.qries.com" /> </head> <body> Qries.com <img src = "https://www.qries.com/images/banner_logo.png" /> </body> </html>