Hi,
how can I add a font-family MyriadPro in css file?
thanks
Hi,
how can I add a font-family MyriadPro in css file?
thanks
You would specify the font like in any other CSS file.
you mean like that?
@font-face{
font-family: "MyriadPro";
src: url("../fonts/MYRIADPRO-REGULAR.OTF") format("truetype");
}
#divExample {
font-family: "MyriadPro";
.....
}
but in this case where can I upload the OTF file?
You could host the file somewhere on the Internet.