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