I am facing an issue with web pages that contain two different languages, English and Chinese. I can only apply one font-family to each language, so how can I apply two different font families to both English and Chinese at the same time? Any suggestions?
@font-face {
font-family: 'Kavoon';
font-style: normal;
font-weight: 400;
src: url(http://example.com/myfonts.eot);
src: local('Kavoon Regular'), local('Kavoon-Regular'), url(http://example.com/myfonts.eot) format('embedded-opentype'), url(http://example.com/myfonts.woff) format('woff');
}
How can I modify these definitions to meet my requirements?