0

I am new to PHP. I am developing a news website in different languages.I am using ML-TTKarthika font for malayalam. My problem is that this font is not supported in all browers (Chrome,Opera). How I solve this problem. In my site Hindi,Tamil fonts are also needed. Please anyone give me an answer..Thanks in advance.

Marc B
  • 340,537
  • 37
  • 382
  • 468
user3171771
  • 39
  • 1
  • 3

1 Answers1

0

This should help you: http://www.w3schools.com/css/css3_fonts.asp

Especially the Part "Using The Font You want"

Basically you can provide a Font with CSS:

@font-face
{
  font-family:myFirstFont;
  src:url(/path/to/font.woff);
}

And then use it:

body
{
  font-family:myFirstFont;
}
sneils
  • 87
  • 2