<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>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_title_create by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:59:32 GMT -->
</html>