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