Hello, I am facing an issue with my multi-language website that supports English and Persian. I have utilized font face to showcase different fonts for the two languages. However, when I add a Persian font to the font-face, all numbers, including English ones on English pages, are displayed as Persian numbers. On the other hand, if I stick to using only an English font-face, all numbers appear in English format. What would be the best course of action in this situation?
@font-face {
font-family: 'myNazanin';
src:
local('B Nazanin'),
url('../fonts/BNazanin.eot') format('eot'),
url('../fonts/BNazanin.woff') format('woff'),
url('../fonts/BNazanin.ttf') format('truetype');
}
@font-face {
font-family: 'my New Roman';
src:
local('Times New Roman'),
}
body{
font-family: myNazanin,'my New Roman';
}