whatever is in the style attribute will over-ride what’s in the css page. Before trying the code below, make sure you don’t have anything thing that would suprecede it, like attributes in a div or table tag
[code]
@font-face {
font-family: ‘GothamBoldRegular’;
src: url(‘fonts/gotham-bold-webfont.eot’);
src: url(‘fonts/gotham-bold-webfont.eot?#iefix’) format(‘embedded-opentype’),
url(‘fonts/gotham-bold-webfont.woff’) format(‘woff’),
url(‘fonts/gotham-bold-webfont.ttf’) format(‘truetype’),
url(‘fonts/gotham-bold-webfont.svg#GothamBoldRegular’) format(‘svg’);
font-weight: normal;
font-style: normal;
}
[/code] in your css page, just change the font name to match yours.