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