Edit This Code:
<!DOCTYPE html>
<html>
<head>
</head>
<body>

<p>Click the button to create a TITLE element.</p>

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>

<script>
function myFunction() {
    var x = document.createElement("TITLE");
    var t = document.createTextNode("HTML DOM Objects");
    x.appendChild(t);
    document.head.appendChild(x);

    document.getElementById("demo").innerHTML = "You have now created a TITLE element in the HEAD section of your document.";
}
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy