fabi.s

Generation

generate functionTue, 06 Jun 2023

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

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant