Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM head Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The head property in HTML is used to return the first occurrence of the head if multiple heads in the document. It returns the reference of the head object, which represents the <head> element
Syntax: 
 

document.head

Return value :- It returns the <head> element of the head object.

Below program illustrates the document.head property in HTML:
Example: 
 

html




<!DOCTYPE html>
<html>
    <head id="Article Head">
        <title>
            DOM document.head() Property in HTML
        </title>
        <style>
            h1 {
                color:green;
            }
            h2 {
                font-family: Impact;
            }
            body {
                text-align:center;
            }
        </style>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <h2>DOM document.head Property</h2>
         
 
<p>
         For displaying the Head of the document,
         double click the "View Head" button:
        </p>
 
 
        <button ondblclick="myHead()">
         View Head
        </button>
        <p id="head"></p>
 
 
        <script>
            function myHead() {
                var gfg = document.head.id;
                document.getElementById("head").innerHTML = gfg;
            }
        </script>
    </body>
</html>                   


Output: 
 

Supported Browsers: The browsers supported by DOM head property are listed below: 
 

  • Google Chrome 4.0 and above
  • Edge 12.0 and above
  • Apple Safari 5.0 and above
  • Firefox 4.0 and above
  • Opera 11.0 and above
  • Internet Explorer 9.0 and above

 


My Personal Notes arrow_drop_up
Last Updated : 12 Aug, 2022
Like Article
Save Article
Similar Reads
Related Tutorials