Friday, June 22, 2012

Solved-Chrome do not show the font face in arial or etc

Solution of this problem

Google Chrome didn't show the right font face like Arial or etc for this you have to write a line of code in top of your style sheet :
@charset "utf-8";
@font-face {
    font-family: Arial;
    src: url(arial.ttf);
}
for arial.ttf you have to download this font file for here http://www.fonts101.com/search/ARIAL.aspx
just include this file where you lactate your style sheet.
Thank you!

No comments:

Post a Comment