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