<!DOCTYPE html>
<html>
<head>
<title>The font-language-override property in CSS</title>
<style type="text/css">
p.para1 {
font-language-override:"TRK";
color: deeppink;
}
p.para2 {
font-language-override: "ENG";
color: green;
}
</style>
</head>
<body>
<p class="para1">Turkish language setting.</p>
<p class="para2">This is a string with the <code>font-language-override</code> set to English.</p>
</body>
</html>