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