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