I am finding this quite perplexing. I am currently using font-squirrel to download a web kit in order to display a custom font. You can access the font through this link:
If you visit the homepage now:
The main text in the center reads "Custom Built Websites Designed To Get You More customers". It appears correctly in Chrome, just as planned, but when viewed in Firefox or Internet Explorer, the custom font face does not display.
Below is the CSS responsible for generating the font-face:
@font-face {
font-family: 'LeagueGothicRegular';
src: url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.eot');
src: url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.eot?#iefix') format('embedded-opentype'),
url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.woff') format('woff'),
url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.ttf') format('truetype'),
url('http://simonsayswebsites.com/wp-content/themes/twentytenchild/League_Gothic-webfont.svg#LeagueGothicRegular') format('svg');
font-weight: normal;
font-style: normal;
Does anyone have any suggestions? I have already explored various cases related to this issue, but none seem applicable to my situation. I believed that I had included all necessary files for each browser and uploaded them to their respective directories.