I am having the hardest time getting @font-face to load for this site. Does any one know what is going on?
I tried using the css from font squirrel but that didn't work either so I tried a simpler code hoping that would work, but no luck so far.
OLDER CSS (did not work)
@font-face {
font-family: 'CartoGothicStdBold';
src: url('CartoGothicStd-Bold-webfont.eot');
src: local('☺'), url('CartoGothicStd-Bold-webfont.woff') format('woff'), url('CartoGothicStd-Bold-webfont.ttf') format('truetype'), url('CartoGothicStd-Bold-webfont.svg#webfontuvgRkG9V') format('svg');
font-weight: normal;
font-style: normal;
}
NEWER CSS (still doesn't work)
@font-face {
font-family: 'CartoGothicStdBold';
src: url(css/fonts/CartoGothicStd-Bold.otf) format("opentype");
}
.b-nb {
float: left;
width: 100%;
font-size: 1.25em;
color: grey;
font-family:'CartoGothicStdBold', serif;
}
I am testing it here: http://drewlepp.com/testing/laa/LAA%20studio/index.html
Thanks!!!!