let myElm = document.createElement("p"); // Create a new element
myElm.innerText = 'test'; // Change the text of the element
myElm.style.color = 'red'; // Change the text color of the element
document.body.appendChild(myElm); // Add the object to the DOM
var newDiv = document.createElement("div");
document.body.appendChild(newDiv);
var x = document.createElement("tag");
x.style.color = "red";
document.body.appendChild(x);