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