const text = `YOUR TEXT HERE`; const typingTextElement = document.getElementById("typing-text"); typingTextElement.innerHTML = ''; // Clear the initial content function typeText(index) { if (index < text.length) { typingTextElement.innerHTML += text.charAt(index); index++; setTimeout(() => { typeText(index); }, 5); // Adjust the delay to control the typing speed } } typeText(0); // Start the typing animation