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