Hi,
I'm trying to bind fonts from a DropDown menu into the text typed in
INPUT box and displaying it in a P tag. Can you please help me how to go
about it. I tried some ways...
here it what i tried so far
<script type="text/javascript" >
function txtFunction() { x=document.getElementById('inputText'); y=document.getElementById('displayText'); y.innerHTML=x.value; x.value=''; }
When I checked the application in another computer, some of the fonts
which are there in drop down didn't work. Can you tell me how I can
embed these fonts in this application so it can work in other systems as well?