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