My @font-face is for some reason not showing up on my website. Is there something wrong with my synt
Posted
by Tapha
on Stack Overflow
See other posts from Stack Overflow
or by Tapha
Published on 2010-05-22T18:10:57Z
Indexed on
2010/05/22
18:50 UTC
Read the original article
Hit count: 509
Here is the css code:
/*Custom*Font*Declerations*/
/*Delicious-Bold*Italic*/
@font-face { font-family: delicious-bolditalic; src: url('dc30.otf'); format("opentype"); }
/*Chunkfive*/
/*(OpenType)*/
@font-face { font-family: Chunkfive; src: url('Chunkfive.otf'); format("opentype"); }
/*Delicious-Italic*/
@font-face { font-family: delicious-italic; src: url('dc32.otf'); format("opentype"); }
/*Chunkfive*/
/*(TrueType)*/
@font-face { font-family: Chunkfive; src: url('Chunkfive.ttf'); format("truetype"); }
/*Delicious-Heavy*/
@font-face { font-family: delicious-heavy; src: url('dc31.otf'); format("opentype"); }
/*Delicious-Bold*/
@font-face { font-family: delicious-bold; src: url('dc35.otf'); format("opentype"); }
/*Delicious-Roman*/
@font-face { font-family: delicious-roman; src: url('dc33.otf'); format("opentype"); }
/*Delicious-Smallcaps*/
@font-face { font-family: delicious-smallcaps; src: url('dc29.otf') format("opentype"); }
/*DJ GROSS*/
@font-face {font-family: DJ Gross; src: url('DJGROSS.ttf') font-weight: normal;}
/*Jinky*/
@font-face {font-family: jinky; src: url('jinky.ttf')}
Thank you
© Stack Overflow or respective owner