This is my Title

// Create a new HTML element (h1)
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);