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