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