How to get the title of an HTML page ?

In this article, we will see how to get the title of HTML page using JavaScript. There is a number of ways to do this but here we discuss a few of the most preferred methods.
Example 1: This example gets the title of the document by using document.title property.
html
| <!DOCTYPE html><htmllang="en"><head>    <title>        zambiatek Page Title    </title></head><bodystyle="text-align: center;">    <h1style="color:green;">        zambiatek    </h1>    <h3>        Click on button to get the         title of HTML document    </h3>        <buttononClick="GFG_Fun()">        Click Here    </button>        <pid="GFG2"></p>        <script>        let elm = document.getElementById('GFG2');        function GFG_Fun() {            elm.innerHTML = document.title;        }    </script></body></html> | 
Output:
 
Example 2: This example gets the title of document by selecting the title by tag name and then taking the element at index 0 using document.getElementsByTagName() method.
html
| <!DOCTYPE html><htmllang="en"><head>    <title>        zambiatek Page Title    </title></head><bodystyle="text-align: center;">    <h1style="color:green;">        zambiatek    </h1>    <h3>        Click on button to get the         title of HTML document    </h3>        <buttononClick="GFG_Fun()">        Click Here    </button>        <pid="GFG"></p>        <script>        let elm = document.getElementById('GFG');        function GFG_Fun() {            let title = document                .getElementsByTagName("title")[0];            elm.innerHTML = title.innerHTML;        }    </script></body></html> | 
Output:
 
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
 
				 
					


