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