Hey,
I'm having an issue with custom fonts on my site. I copied the code from a Google Fontlibary CSS file
/* Custom fonts for the site */
@font-face {
font-family: 'Reenie Beanie';
font-style: normal;
font-weight: normal;
src: local('Reenie Beanie'), url('http://themes.googleusercontent.com/font?kit=ljpKc6CdXusL1cnGUSamX_cCQibwlboQP4eCflnqtq0') format('truetype');
}
/*Assign the custom font's to where there needed*/
h2{
font-family: 'Reenie Beanie', arial, serif;
}
and that works fine, however I downloaded the font and saved it to my server but when I change the URL location of the file like
/* Custom fonts for the site */
@font-face {
font-family: 'Reenie Beanie';
font-style: normal;
font-weight: normal;
src: local('Reenie Beanie'), url('http://srudge.co.uk/res/fonts/font.ttf') format('truetype');
}
/*Assign the custom font's to where there needed*/
h2{
font-family: 'Reenie Beanie', arial, serif;
}
What's wrong?
Thanx,
Sam Rudge