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