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