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