My website is in Hebrew. I want to use my own custom font (which I already installed) for Hebrew and helvetica for English. How do I do this?
No. Just want the English texts which are included in sentences in Hebrew to use different fonts – is it possible?
Hi,
That’s possible but you’d need to code it in HTML, for example you could have a sentence like this:
This is english, <span class='hebrew-font'>and this is in Hebrew</span>.
And then in Quick CSS:
.hebrew-font{
font-family: "Alef Hebrew";
}
Makes sense?
Regards,
Josue
Thanks. I know this way. Was thinking if maybe there’s a way to only use css and no spans…
Hey!
It’s not possible to apply different fonts on the same paragraph so you have to use span tags or any html contaienrs with class attribute to differentiate the two.
Cheers!
Ismael
Ok. Many thanks.