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