2

I have been trying to fix my problem regarding my fonts on my current project. The website can't seem to locate the fonts that i have uploaded yet on my localhost the fonts seem to be working. The path is also the same as one in the localhost and when i check it on firebug I'm getting a network error which is weird

and here is my CSS code in applying the font

@font-face {
    font-family: 'kulturistaregular';
    src: url('fonts/kulturista/kulturista_medium-webfont.eot');
    src: url('fonts/kulturista/kulturista_medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/kulturista/kulturista_medium-webfont.woff') format('woff'),
         url('fonts/kulturista/kulturista_medium-webfont.ttf') format('truetype'),
         url('fonts/kulturista/kulturista_medium-webfont.svg#kulturistaregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

Here is the link for my current project

http://192.163.215.153/baronpage/
Leo Zhao
  • 544
  • 7
  • 18
clestcruz
  • 1,081
  • 3
  • 31
  • 75

1 Answers1

0

I dug around in your project and noticed that the main kulturista folder is spelt with a capital K (Kulturista). Perhaps case-sensitivity in your hosting environment is preventing those assets from being loaded?

Here is a (possibly) related stackoverflow answer: https://stackoverflow.com/a/17113291/2803192

Community
  • 1
  • 1
sviens
  • 1