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