js that adds a spinning h1 in light pruple with a long text
function addSpinningHeader(){ let header = document.createElement("h1") header.innerText = "I'm a spinning header" header.style.color = "purple" header.style.animation = "spin infinite 2s linear" document.body.append(header) }