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