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