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