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