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