Use on the webTotal Use [ 6065 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/edd3a3f66a716dd6e01b0f28bb0636dd?family=PMN+Caecilia+75+Bold+Oldstyle+Figures" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/edd3a3f66a716dd6e01b0f28bb0636dd?family=PMN+Caecilia+75+Bold+Oldstyle+Figures);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "PMN Caecilia 75 Bold Oldstyle Figures";
src: url("https://db.onlinewebfonts.com/t/edd3a3f66a716dd6e01b0f28bb0636dd.eot");
src: url("https://db.onlinewebfonts.com/t/edd3a3f66a716dd6e01b0f28bb0636dd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/edd3a3f66a716dd6e01b0f28bb0636dd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/edd3a3f66a716dd6e01b0f28bb0636dd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/edd3a3f66a716dd6e01b0f28bb0636dd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/edd3a3f66a716dd6e01b0f28bb0636dd.svg#PMN Caecilia 75 Bold Oldstyle Figures")format("svg");
}
2CSS rules to specify fonts
font-family: "PMN Caecilia 75 Bold Oldstyle Figures";