Use on the webTotal Use [ 3805 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/379988e91ad41759aea18260dab754b2?family=PFDinDisplayPro-BoldItalic" 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/379988e91ad41759aea18260dab754b2?family=PFDinDisplayPro-BoldItalic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "PFDinDisplayPro-BoldItalic";
src: url("https://db.onlinewebfonts.com/t/379988e91ad41759aea18260dab754b2.eot");
src: url("https://db.onlinewebfonts.com/t/379988e91ad41759aea18260dab754b2.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/379988e91ad41759aea18260dab754b2.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/379988e91ad41759aea18260dab754b2.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/379988e91ad41759aea18260dab754b2.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/379988e91ad41759aea18260dab754b2.svg#PFDinDisplayPro-BoldItalic")format("svg");
}
2CSS rules to specify fonts
font-family: "PFDinDisplayPro-BoldItalic";