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