css, external fonts

css, fonts

Solution

you can add this css in your style sheet.

@font-face {
        font-family: "MyriadPro";
        font-style: normal;
        src: url(../fonts/MyriadPro-It.eot); /*if IE */
        src: local("Grandesign Regular"), url("../fonts/MyriadPro-It.ttf") format("truetype"); /* non-IE */
}

Problem

I have a big problem with css, how can I pun this font MyriadPro-It.otf in CSS? Thanks !

Original source

Related problems