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