fabi.s

Generation

generate functionMon, 10 Jul 2023

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) }

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant