This is my Title
var helloWorldElement = document.createElement("h1");
// Set the text content of the element to "Hello World"
helloWorldElement.textContent = "Hello World";
// Append the new element to the body of the document
document.body.appendChild(helloWorldElement);