HTML DOM title Property

Last Updated : 10 Aug, 2026

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 

html
<!--Driver Code Starts-->
<!DOCTYPE html>
<html>
  
<head>
    <title>DOM title Property</title>
    <style>
        h1 {
            color: green;
        }
    </style>
</head>

<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOM title Property</h2>
<!--Driver Code Ends-->

    <button onclick="geeks()">
      Submit
      </button>
    <p id="sudo"></p>
    <script>
        function geeks() {
            let x = document.title;
            document.getElementById("sudo").innerHTML = x;
        }
    </script>

<!--Driver Code Starts-->
</body>
  
</html>
<!--Driver Code Ends-->

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

html
<!--Driver Code Starts-->
<!DOCTYPE html>
<html>
  
<head>
    <title>DOM title Property</title>
    <style>
        h1 {
            color: green;
        }
    </style>
</head>

<body>
    <h1>GeeksforGeeks</h1>
    <h2>DOM title Property</h2>
<!--Driver Code Ends-->

    <button onclick="geeks()">Submit</button>
    <p id="sudo"></p>
    <script>
        function geeks() {
            document.getElementById("sudo").innerHTML =
                "New DOM Title";
        }
    </script>

<!--Driver Code Starts-->
</body>
  
</html>
<!--Driver Code Ends-->
Comment