A web designer provided me with some fonts to use on a website. Below is the content of my fonts.css file:
/* Font Awesome */
/* Font Awesome Bold */
@font-face{
font-family: 'font-awesome';
src: url('fonts/font-awesome-bold-webfont.eot');
src: url('fonts/font-awesome-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/font-awesome-bold-webfont.woff') format('woff'),
url('fonts/font-awesome-bold-webfont.ttf') format('truetype'),
url('fonts/font-awesome-bold-webfont.svg#webfont') format('svg');
}
However, I noticed that these fonts only display correctly on my Mac in Chrome and Safari browsers. On Linux or Windows systems, the fonts do not work regardless of the browser being used (Chrome, Safari, IE, Opera, etc.). Can anyone spot an error or offer advice on how to resolve this issue? Thank you for your assistance.
UPDATE
The following line in the css file needs attention:
font-family: 'delicious', Arial, sans-serif;