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