I'm trying to use two different fonts for two different languages. But both fonts are overlapping eachother hence causing difficulty in reading the text. Here is what I am trying;
CSS:
@font-face {
font-family: 'Jameel Noori Nastaleeq';
src: url(../../../fonts/Jameel Noori Nastaleeq.ttf)
}
and then in the area where my text
is written this CSS class has been used:
CSS:
.post_body {
padding: 5px;
font-size: 17px;
font-family: Tahoma, Jameel Noori Nastaleeq;
}
The issue is, when I use URDU
text in my post it shows correct font style, however when I use ENGLISH
text then it doesn't uses Tahoma
font style.
Please help on how to use two different font styles for two different languages in the same area?