My @font-face is for some reason not showing up on my website. Is there something wrong with my synt
- by Tapha
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