Fanfare Design Contact

We invite you to a discussion over a cup of coffee.

Alternatively, you can contact us any day of the week. We will be happy to collaborate.

Please send us your requirements briefly or any query that you have for your upcoming shows, brand requirement and design work.



      const textElement = document.getElementById("typewriter-text"); const text = textElement.innerHTML; // Get the existing text const speed = 100; // Speed of typing in milliseconds let index = 0;// Clear the text in the div initially textElement.innerHTML = "";function typeWriter() { if (index < text.length) { textElement.innerHTML += text.charAt(index); index++; setTimeout(typeWriter, speed); } }// Start the typewriter effect when the page loads window.onload = function() { typeWriter(); };