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