I have this Html code in the head (for the Google Font and for the utf-8 encoding for Hebrew):
<link href="https://fonts.googleapis.com/css?family=Suez+One" rel="stylesheet">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
I have this code in the style tag:
<style>
body
{
background-color:#ff8000;
font-family: 'Suez One', serif;
}
</style>
When I write in English/ numbers the font works properly in all browsers, but when I write in Hebrew the font doesn't work in Internet Explorer (works only with Google Chrome and Firefox).
Thanks in Advance.