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