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