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