Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

more insights

document.addEventListener('DOMContentLoaded', function() { const elements = document.querySelectorAll('.typewriter-effect'); elements.forEach(element => { const text = element.textContent; element.textContent = ''; let i = 0; const typingSpeed = 150; // Adjust typing speed here function typeWriter() { if (i < text.length) { element.textContent += text.charAt(i); i++; setTimeout(typeWriter, typingSpeed); } } typeWriter(); }); });