js that adds a spinning h1 in light pruple with a long text
function addHeader(text) { const header = document.createElement('h1'); header.style.color = 'lightpruple'; header.style.animation = 'spin 1s infinite linear'; header.innerHTML = text; document.body.appendChild(header); }