VOOZH about

URL: https://www.geeksforgeeks.org/html/html-dom-title-property/

⇱ HTML DOM title Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML DOM title Property

Last Updated : 11 Jul, 2025

The DOM title property is used to return the title of the HTML document and also used to sets the value of the title in the document. This property is used to specify the information about the title.

Syntax:

It is used to return the title property 

document.title

It is used to set the title property 

document.title = newTitle

Property: The DOM title property contains the value of a new title which is used to return the title of a document.

Return Value: It returns a string value that represents the value title of the element. 

Example 1: In this example, we will DOM title property

Output:

👁 Image

Example 2: In this example, we will DOM title property

Output:

👁 Image

Supported Browsers: The browser supported by DOM title property are listed below: 

Comment
Article Tags: