Not sure why but @font-face has stopped working on a number of my sites (Blogger & Wordpress). I previously used Google Drive to host the fonts as below:
@font-face {font-family: 'Biloxi';
src: url('https://googledrive.com/host/0Bybz--lLp5SvZmc0SGRGOVB4dEE/Biloxi Script-webfont.eot');
src: url('https://googledrive.com/host/0Bybz--lLp5SvZmc0SGRGOVB4dEE/Biloxi Script-webfont.eot') format('embedded-opentype'),
url('https://googledrive.com/host/0Bybz--lLp5SvZmc0SGRGOVB4dEE/Biloxi Script-webfont.woff') format('woff'),
url('https://googledrive.com/host/0Bybz--lLp5SvZmc0SGRGOVB4dEE/Biloxi Script-webfont.ttf') format('truetype'),
url('https://googledrive.com/host/0Bybz--lLp5SvZmc0SGRGOVB4dEE/Biloxi Script-webfont.svg') format('svg');
font-weight: normal;
font-style: normal;}
When it stopped working, I tried hosting the fonts on my server and linking to the fonts in a file as below but even this didn't load the fonts which I found strange.
@font-face {
font-family: 'Shorelines Script';
src: url('ShorelinesScriptBold.eot');
src: url('ShorelinesScriptBold.eot?#iefix') format('embedded-opentype'),
url('ShorelinesScriptBold.woff') format('woff'),
url('ShorelinesScriptBold.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
It seems sporadic so the font will load one minute, but then you refresh and it won't load (e.g. http://hummingbirdgattodesign.blogspot.co.uk/). The problem has been on Blogger and Wordpress and seems to be on Chrome and Firefox.
As a relatively inexperienced coder any help is greatly appreciated!