<html>
<body>
<h1>The Document Object</h1>
<h2>The documentElement Property</h2>
<p>The element node is:</p>
<p id="demo"></p>
<script>
document.getElementById("demo").innerHTML = document.documentElement.nodeName;
</script>
</body>
</html>