Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<head>
  <title>My title</title>
</head>
<body>
<h1>The Document Object</h1>
<h2>The head Property</h2>
<p>The tag name of the first child element of the head element is:</p>
<p id="demo"></p>
<script>
let tag = document.head.firstElementChild.tagName;
document.getElementById("demo").innerHTML = tag;
</script>
</body>
</html>