BRAND IDENTITY DESIGN

Enhancing Trade fairs and International Events

Every brand is created with some fundamental requirements. A business goal, a recognition and an outreach. A client defines his business goal. We design the personality so that it communicates the right message to the relevant audience.

At Fanfare Designs we think uninhibited, and then filter the ideas for the most suitable flavour.

The process always lends a uniqueness that helps in better brand recall.

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